You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently I have a main docker compose file that includes a few other ones, network-infra, private-services, public-services, immich, and monitoring. e.g.
WUD is defined in private services, and then I use this label on the rest of the containers: - wud.tag.include=^\d+\.\d+\.\d+$$.
The issue I'm having is that I keep getting emails from WUD that containers can be updated but the new version is something like sha256:68c3aeb8 instead of a proper version like the wud.tag.include. I think the reason this is happening is because in my docker compose files, container images are latest, e.g. image: lscr.io/linuxserver/plex:latest, and I'm using the WUD Docker trigger instead of Docker Compose trigger (because I wasn't sure how it handles multiple files).
Does anyone know how to get this setup working? I.e. have WUD update the version in the docker compose even when there are files included in a main one, and then to ignore latest commit changes on only proper version tags?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Currently I have a main docker compose file that includes a few other ones, network-infra, private-services, public-services, immich, and monitoring. e.g.
WUD is defined in private services, and then I use this label on the rest of the containers:
- wud.tag.include=^\d+\.\d+\.\d+$$
.The issue I'm having is that I keep getting emails from WUD that containers can be updated but the new version is something like
sha256:68c3aeb8
instead of a proper version like thewud.tag.include
. I think the reason this is happening is because in my docker compose files, container images are latest, e.g.image: lscr.io/linuxserver/plex:latest
, and I'm using the WUD Docker trigger instead of Docker Compose trigger (because I wasn't sure how it handles multiple files).Does anyone know how to get this setup working? I.e. have WUD update the version in the docker compose even when there are files included in a main one, and then to ignore latest commit changes on only proper version tags?
Beta Was this translation helpful? Give feedback.
All reactions