2018-02-01 12:27:52 +00:00
|
|
|
angular.module('portainer.docker').component('containersDatatable', {
|
|
|
|
templateUrl: 'app/docker/components/datatables/containers-datatable/containersDatatable.html',
|
2017-12-06 11:04:02 +00:00
|
|
|
controller: 'ContainersDatatableController',
|
|
|
|
bindings: {
|
|
|
|
title: '@',
|
|
|
|
titleIcon: '@',
|
|
|
|
dataset: '<',
|
|
|
|
tableKey: '@',
|
|
|
|
orderBy: '@',
|
|
|
|
reverseOrder: '<',
|
|
|
|
showTextFilter: '<',
|
|
|
|
showOwnershipColumn: '<',
|
2018-05-06 07:15:57 +00:00
|
|
|
showHostColumn: '<',
|
2017-12-06 11:04:02 +00:00
|
|
|
publicUrl: '<',
|
|
|
|
containerNameTruncateSize: '<',
|
|
|
|
startAction: '<',
|
|
|
|
stopAction: '<',
|
|
|
|
killAction: '<',
|
|
|
|
restartAction: '<',
|
|
|
|
pauseAction: '<',
|
|
|
|
resumeAction: '<',
|
|
|
|
removeAction: '<'
|
|
|
|
}
|
|
|
|
});
|