Script pour mise à jour docker compose depuis home assistant

Bonjour,

J’ai HA en docker avec pas mal d’autre compose.
De temps en temps j’aimerai mettre à jour avec la nouvelle image de home assistant par exemple (mais ma question concerne aussi les autres compose sous Portainer)

Existe t-il une solution pour être notifié de mise à jour mais surtout pour mettre à jour manuellement avec un simple bouton par image. Je sais qu’il existe watchtower, mais il met à jour automatiquement et je préfère le faire moi même.

Merci

1 « J'aime »

Avec watchtower tu as la possibilité de faire du monitoring only :

Monitor Only

Individual containers can be marked to only be monitored (without being updated).

To do so, set the com.centurylinklabs.watchtower.monitor-only label to true on that container.

LABEL com.centurylinklabs.watchtower.monitor-only="true"

Or, it can be specified as part of the docker run command line:

docker run -d --label=com.centurylinklabs.watchtower.monitor-only=true someimage

When the label is specified on a container, watchtower treats that container exactly as if WATCHTOWER_MONITOR_ONLY was set, but the effect is limited to the individual container.

, ou il y a diun aussi qui est pas mal

1 « J'aime »