-
So i'm hoping you guys can figure this one out.. I have 4 images , where i use dockerfile and one of them is wordpress , just to give an example.. FROM wordpress:latest
RUN chmod o+r /etc/resolv.conf && apt-get update Here i use "docker-compose up -d wordpress" to pull & build and start the images , this goes fine.. So here's the issue.. When watchtower checks for newer images for wordpress , it fails:
and for me it seems the name is wrong = dockercompose-wordpress.:latest Any input is appreciated and thanks in advice :) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
The prefix is what docker-compose adds, but that's not the issue here. Since you are creating your own image from a Dockerfile, there will never be any updates to it unless you build it yourself. |
Beta Was this translation helpful? Give feedback.
The prefix is what docker-compose adds, but that's not the issue here. Since you are creating your own image from a Dockerfile, there will never be any updates to it unless you build it yourself.
For watchtower to be able to check the container for updates it needs to be started from the image ref that you want to check for updates (in this case
wordpress:latest
) and not be built locally.