pulling latest docker automically?
See original GitHub issuerestarting my docker-compose with double-take:latest is not automatically pulling ver1.2. still my old ver1.0. is there no automatic pull for latest? or is my tagging wrong?
# double-take
version: '3.7'
services:
double-take:
container_name: double-take
#image: jakowenko/double-take
#image: jakowenko/double-take:0.10.2
#image: jakowenko/double-take:beta-1.0.0
#image: jakowenko/double-take:1.2.0
image: jakowenko/double-take:latest
#image: jakowenko/double-take:beta
restart: unless-stopped
volumes:
#- ${PWD}/.storage:/.storage
- /usr/src/media:/.storage
# config?
#- /usr/src/doubltake.yml:/config/config.yml:ro
ports:
- 3000:3000
```
Issue Analytics
- State:
- Created 2 years ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
How to automatically update your docker containers, if ...
We use a script which checks if a running container is started with the latest image. We also use upstart init scripts for...
Read more >How to Automatically Update Docker Container Images ...
In this tutorial, you will use Watchtower with both Docker's run command and Docker Compose to automatically update a Docker image. Both methods ......
Read more >How to automatically pull and deploy updated Docker images
We want our test and production stacks to be automatically updated every time something new is pushed to the test or release branch....
Read more >Automatically pull updated Docker images and restart ...
If you use docker.io (or any similar service) to build your Docker containers, it may be possible that, once the new image is...
Read more >Set up Automated Builds - Docker Documentation
You can configure repositories in Docker Hub so that they automatically build an image each time you push new code to your source...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Glad you got it working. Thanks for helping @mr-manuel!
yeah thanks for this idea. i tlet me google and i found, that there also seems to be a docker-compose policy for polling https://stackoverflow.com/a/66136860
i will try this next time also… thanks for creating dtouke. does a great job for me