diff --git a/app/portainer/components/forms/git-form/git-form-auto-update-fieldset/git-form-auto-update-fieldset.html b/app/portainer/components/forms/git-form/git-form-auto-update-fieldset/git-form-auto-update-fieldset.html index 695a8d46b..298adf8a2 100644 --- a/app/portainer/components/forms/git-form/git-form-auto-update-fieldset/git-form-auto-update-fieldset.html +++ b/app/portainer/components/forms/git-form/git-form-auto-update-fieldset/git-form-auto-update-fieldset.html @@ -98,8 +98,9 @@ name="'forcePullImage'" feature-id="$ctrl.stackPullImageFeature" checked="$ctrl.model.ForcePullImage" - label="'Pull latest image'" + label="'Re-pull image'" label-class="'col-sm-3 col-lg-2'" + tooltip="'If enabled, then when redeploy is triggered via the webhook or polling, if there\'s a newer image with the tag that you\'ve specified (e.g. changeable development builds), it\'s pulled and redeployed. If you haven\'t specified a tag, or have specified \'latest\' as the tag, then the image with the tag \'latest\' is pulled and redeployed.'" > diff --git a/app/portainer/services/modal.service/prompt.ts b/app/portainer/services/modal.service/prompt.ts index 0e36fb192..963fcff38 100644 --- a/app/portainer/services/modal.service/prompt.ts +++ b/app/portainer/services/modal.service/prompt.ts @@ -128,7 +128,7 @@ export function confirmContainerRecreation( inputType: 'checkbox', inputOptions: [ { - text: 'Pull latest image', + text: 'Re-pull image', value: '1', }, ], @@ -156,7 +156,7 @@ export function confirmContainerRecreation( formCheck.prop('style', 'height: 45px;'); const cannotPullImageMessage = `
- Cannot pull latest as the image is inaccessible - either it no longer exists or the tag or name is no longer correct. + Cannot re-pull as the image is inaccessible - either it no longer exists or the tag or name is no longer correct.
`; formCheck.append(`${cannotPullImageMessage}`); @@ -174,7 +174,7 @@ export function confirmServiceForceUpdate( inputType: 'checkbox', inputOptions: [ { - text: 'Pull latest image version', + text: 'Re-pull image', value: '1', }, ],