mirror of https://github.com/portainer/portainer
91 lines
3.5 KiB
JavaScript
91 lines
3.5 KiB
JavaScript
angular.module('dockerui', [
|
|
'dockerui.templates',
|
|
'ngRoute',
|
|
'dockerui.services',
|
|
'dockerui.filters',
|
|
'masthead',
|
|
'footer',
|
|
'dashboard',
|
|
'container',
|
|
'containers',
|
|
'containersNetwork',
|
|
'images',
|
|
'image',
|
|
'pullImage',
|
|
'startContainer',
|
|
'sidebar',
|
|
'info',
|
|
'builder',
|
|
'containerLogs',
|
|
'containerTop',
|
|
'events',
|
|
'stats',
|
|
'network',
|
|
'networks',
|
|
'volumes'])
|
|
.config(['$routeProvider', '$httpProvider', function ($routeProvider, $httpProvider) {
|
|
'use strict';
|
|
$routeProvider.when('/', {
|
|
templateUrl: 'app/components/dashboard/dashboard.html',
|
|
controller: 'DashboardController'
|
|
});
|
|
$routeProvider.when('/containers/', {
|
|
templateUrl: 'app/components/containers/containers.html',
|
|
controller: 'ContainersController'
|
|
});
|
|
$routeProvider.when('/containers/:id/', {
|
|
templateUrl: 'app/components/container/container.html',
|
|
controller: 'ContainerController'
|
|
});
|
|
$routeProvider.when('/containers/:id/logs/', {
|
|
templateUrl: 'app/components/containerLogs/containerlogs.html',
|
|
controller: 'ContainerLogsController'
|
|
});
|
|
$routeProvider.when('/containers/:id/top', {
|
|
templateUrl: 'app/components/containerTop/containerTop.html',
|
|
controller: 'ContainerTopController'
|
|
});
|
|
$routeProvider.when('/containers/:id/stats', {
|
|
templateUrl: 'app/components/stats/stats.html',
|
|
controller: 'StatsController'
|
|
});
|
|
$routeProvider.when('/containers_network', {
|
|
templateUrl: 'app/components/containersNetwork/containersNetwork.html',
|
|
controller: 'ContainersNetworkController'
|
|
});
|
|
$routeProvider.when('/images/', {
|
|
templateUrl: 'app/components/images/images.html',
|
|
controller: 'ImagesController'
|
|
});
|
|
$routeProvider.when('/images/:id*/', {
|
|
templateUrl: 'app/components/image/image.html',
|
|
controller: 'ImageController'
|
|
});
|
|
$routeProvider.when('/info', {templateUrl: 'app/components/info/info.html', controller: 'InfoController'});
|
|
$routeProvider.when('/events', {
|
|
templateUrl: 'app/components/events/events.html',
|
|
controller: 'EventsController'
|
|
});
|
|
$routeProvider.otherwise({redirectTo: '/'});
|
|
|
|
// The Docker API likes to return plaintext errors, this catches them and disp
|
|
$httpProvider.interceptors.push(function() {
|
|
return {
|
|
'response': function(response) {
|
|
if (typeof(response.data) === 'string' && response.data.startsWith('Conflict.')) {
|
|
$.gritter.add({
|
|
title: 'Error',
|
|
text: response.data,
|
|
time: 10000
|
|
});
|
|
}
|
|
return response;
|
|
}
|
|
};
|
|
});
|
|
}])
|
|
// 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. If you have a port, prefix it with a ':' i.e. :4243
|
|
.constant('UI_VERSION', 'v0.9.0-beta'); |