mirror of
https://github.com/portainer/portainer.git
synced 2025-07-22 06:49:40 +02:00
fix(image-details): fix invalid CMD with images using HEALTHCHECK (#879)
This commit is contained in:
parent
d3ecf1d7a8
commit
a380fd9adc
3 changed files with 5 additions and 5 deletions
|
@ -24,7 +24,7 @@ function ($scope, $stateParams, $state, ImageService, Notifications) {
|
|||
});
|
||||
};
|
||||
|
||||
$scope.pushImage = function(tag) {
|
||||
$scope.pushTag = function(tag) {
|
||||
$('#loadingViewSpinner').show();
|
||||
ImageService.pushImage(tag)
|
||||
.then(function success() {
|
||||
|
@ -38,7 +38,7 @@ function ($scope, $stateParams, $state, ImageService, Notifications) {
|
|||
});
|
||||
};
|
||||
|
||||
$scope.pullImage = function(tag) {
|
||||
$scope.pullTag = function(tag) {
|
||||
$('#loadingViewSpinner').show();
|
||||
|
||||
ImageService.pullTag(tag)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue