-
-
This service is being updated. Editing this service is currently disabled.
-
Refresh to see if this service has finished updated.
+
-
-
-
-
-
-
-
-
- Name |
-
-
- |
- {{ service.Name }} |
-
-
- ID |
- {{ service.Id }} |
-
-
- Created at |
- {{ service.CreatedAt | getisodate }} |
-
-
- Last updated at |
- {{ service.UpdatedAt | getisodate }} |
-
-
- Version |
- {{ service.Version }} |
-
-
- Scheduling mode |
- {{ service.Mode }} |
-
-
- Replicas |
-
-
+
+
+
+
+
+
+
+
+ Name |
+
-
- |
-
-
- Image |
- {{ service.Image }} |
-
-
-
-
- |
-
-
-
-
- {{ webhookURL | truncatelr }}
-
-
-
-
+ |
+ {{ service.Name }} |
+
+
+ ID |
+ {{ service.Id }} |
+
+
+ Created at |
+ {{ service.CreatedAt | getisodate }} |
+
+
+ Last updated at |
+ {{ service.UpdatedAt | getisodate }} |
+
+
+ Version |
+ {{ service.Version }} |
+
+
+ Scheduling mode |
+ {{ service.Mode }} |
+
+
+ Replicas |
+
+
+
-
- |
-
-
-
-
- Note: you can only rollback one level of changes. Clicking the rollback button without making a new change will undo your previous rollback |
+
+ Image |
+ {{ service.Image }} |
+
+
+
+
+ Service webhook
+
- Update in progress...
-
-
+ |
+
+
+
+
+ {{ webhookURL | truncatelr }}
+
+
+
+
+
+
+ |
+
+
+
+
+ Note: you can only rollback one level of changes. Clicking the rollback button without making a new change will undo your previous rollback
- |
-
-
-
-
-
-
- Do you need help? View the Docker Service documentation here.
-
- |
+
+
+
+
+
+
+ Do you need help? View the Docker Service documentation here.
+
+
-
-
-
+
+
+
+
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
Container specification
+
+
+
+
+
+
+
+
+
+
+
Networks & ports
+
+
+
+
+
+
+
+
+
+
+
+
Service specification
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
Container specification
-
-
-
-
-
-
-
-
-
-
-
-
Networks & ports
-
-
-
-
-
-
-
-
-
-
-
-
Service specification
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/app/docker/views/services/edit/serviceController.js b/app/docker/views/services/edit/serviceController.js
index 69474b398..3344ef2ab 100644
--- a/app/docker/views/services/edit/serviceController.js
+++ b/app/docker/views/services/edit/serviceController.js
@@ -731,6 +731,7 @@ angular.module('portainer.docker').controller('ServiceController', [
};
function initView() {
+ $scope.isLoading = true;
var apiVersion = $scope.applicationState.endpoint.apiVersion;
var agentProxy = $scope.applicationState.endpoint.mode.agentProxy;
@@ -855,6 +856,9 @@ angular.module('portainer.docker').controller('ServiceController', [
$scope.secrets = [];
$scope.configs = [];
Notifications.error('Failure', err, 'Unable to retrieve service details');
+ })
+ .finally(() => {
+ $scope.isLoading = false;
});
}