mirror of https://github.com/portainer/portainer
Update port examples
parent
5dc53c3abe
commit
55542e66ad
|
@ -34,7 +34,7 @@ This tells dockerui to use http://192.168.1.9:4243 to communicate to dockerd's R
|
||||||
|
|
||||||
|
|
||||||
.constant('DOCKER_ENDPOINT', 'http://192.168.1.9')
|
.constant('DOCKER_ENDPOINT', 'http://192.168.1.9')
|
||||||
.constant('DOCKER_PORT', '4243') // Docker port, leave as an empty string if no port is requred. i.e. 4243
|
.constant('DOCKER_PORT', ':4243')
|
||||||
|
|
||||||
|
|
||||||
3. Make sure you run git submodule update --init to pull down any dependencies ( ace editor ).
|
3. Make sure you run git submodule update --init to pull down any dependencies ( ace editor ).
|
||||||
|
|
|
@ -13,6 +13,6 @@ angular.module('dockerui', ['dockerui.services', 'dockerui.filters'])
|
||||||
// This is your docker url that the api will use to make requests
|
// This is your docker url that the api will use to make requests
|
||||||
// You need to set this to the api endpoint without the port i.e. http://192.168.1.9
|
// You need to set this to the api endpoint without the port i.e. http://192.168.1.9
|
||||||
.constant('DOCKER_ENDPOINT', '/dockerapi')
|
.constant('DOCKER_ENDPOINT', '/dockerapi')
|
||||||
.constant('DOCKER_PORT', '') // Docker port, leave as an empty string if no port is requred. i.e. 4243
|
.constant('DOCKER_PORT', '') // Docker port, leave as an empty string if no port is requred. If you have a port, prefix it with a ':' i.e. :4243
|
||||||
.constant('UI_VERSION', 'v0.2')
|
.constant('UI_VERSION', 'v0.2')
|
||||||
.constant('DOCKER_API_VERSION', 'v1.2');
|
.constant('DOCKER_API_VERSION', 'v1.2');
|
||||||
|
|
Loading…
Reference in New Issue