Replies: 1 comment 4 replies
-
Its a good idea, I can definitely implement a
The UI can then display to the user that there is an update available, and the new image will already be pulled onto target server and ready for deploy.
|
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
After requesting an option to disable automatic image pulling, I now come with a feature request to add an option to manually pull images in Stack configuration and Deployment pages (and perhaps the image pages themselves).
The button should appear next to the Deploy, Stop, Destroy, etc., buttons, and be labeled either "Pull" or "Update". For stacks, this should simply call
docker compose pull
.This would allow me to pull images for running services not pinned to any version, which I do not know have an update or not, and choose to Redeploy after if needed, as to not Redeploy and cause unnecessary downtime if there wasn't even an update.
Since the
docker compose pull
command allows specifying a service, a dialog box or dropdown could also be implemented, allowing users to choose which service's image should be pulled, with an option to pull all of them.Consider using the flag
--ignore-pull-failures
.Beta Was this translation helpful? Give feedback.
All reactions