1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-23 15:29:42 +02:00

Update port examples

This commit is contained in:
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

@ -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');