Home > Software design >  How to make Docker Compose pull & restart when any of the image is updated?
How to make Docker Compose pull & restart when any of the image is updated?

Time:05-09

How can I make my docker compose restart itself and use the latest image (pulls new version of the image) when any of its images has a new push? Thanks!

CodePudding user response:

You can't do this with docker-compose. There is the need for something/someone who checks for new image, something like Watchtower, for example.

  • Related