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

Add build support for http request

This commit is contained in:
Michael Crosby 2013-06-18 16:50:35 -09:00
parent 7b7bb46844
commit 0f8da44165
3 changed files with 31 additions and 7 deletions

View file

@ -11,6 +11,7 @@ angular.module('dockerui', ['dockerui.services', 'dockerui.filters'])
$routeProvider.otherwise({redirectTo: '/'});
}])
// This is your docker url that the api will use to make requests
.constant('DOCKER_ENDPOINT', 'http://192.168.1.9:4243\:4243')
.constant('UI_VERSION', 'v0.1')
.constant('DOCKER_ENDPOINT', 'http://192.168.1.9')
.constant('DOCKER_PORT', ':4243')
.constant('UI_VERSION', 'v0.2')
.constant('DOCKER_API_VERSION', 'v1.1');