2018-10-07 22:44:08 +00:00
|
|
|
angular.module('portainer.docker').component('hostOverview', {
|
2019-03-21 05:46:49 +00:00
|
|
|
templateUrl: './host-overview.html',
|
2018-10-07 22:44:08 +00:00
|
|
|
bindings: {
|
|
|
|
hostDetails: '<',
|
|
|
|
engineDetails: '<',
|
|
|
|
devices: '<',
|
|
|
|
disks: '<',
|
|
|
|
isAgent: '<',
|
2018-10-28 09:27:06 +00:00
|
|
|
offlineMode: '<',
|
2018-10-26 03:16:29 +00:00
|
|
|
agentApiVersion: '<',
|
2018-10-11 22:32:17 +00:00
|
|
|
refreshUrl: '@',
|
2018-10-28 06:06:50 +00:00
|
|
|
browseUrl: '@',
|
|
|
|
jobUrl: '@',
|
|
|
|
isJobEnabled: '<',
|
2018-12-05 22:36:25 +00:00
|
|
|
hostFeaturesEnabled: '<',
|
2018-10-28 06:06:50 +00:00
|
|
|
jobs: '<'
|
2018-10-07 22:44:08 +00:00
|
|
|
},
|
|
|
|
transclude: true
|
|
|
|
});
|