mirror of https://github.com/portainer/portainer
18 lines
477 B
JavaScript
18 lines
477 B
JavaScript
angular.module('portainer.docker')
|
|
.controller('ContainersController', ['$scope', 'ContainerService', 'Notifications',
|
|
function ($scope, ContainerService, Notifications) {
|
|
|
|
function initView() {
|
|
ContainerService.containers(1)
|
|
.then(function success(data) {
|
|
$scope.containers = data;
|
|
})
|
|
.catch(function error(err) {
|
|
Notifications.error('Failure', err, 'Unable to retrieve containers');
|
|
$scope.containers = [];
|
|
});
|
|
}
|
|
|
|
initView();
|
|
}]);
|