Update port examples

pull/2/head
Michael Crosby 2013-06-23 09:44:46 -09:00
parent 5dc53c3abe
commit 55542e66ad
2 changed files with 2 additions and 2 deletions

View File

@ -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_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 ).

View File

@ -13,6 +13,6 @@ angular.module('dockerui', ['dockerui.services', 'dockerui.filters'])
// 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
.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('DOCKER_API_VERSION', 'v1.2');