@Lelolo
Bonjour,
Bizarre, car je n'ai jamais constaté cela. A chaque mise à jour de l'image watchtower le conteneur semble bien redémarrer car dans mon monitoring, le temps de fonctionnement est bien réinitialisé.
Je te joint mon docker-compose.yml à toutes fins utiles :
version: '2.1'
services:
watchtower:
image: containrrr/watchtower:latest
container_name: watchtower
hostname: watchtower
networks:
- gotify_network
labels:
- "com.centurylinklabs.watchtower.enable=true"
environment:
- TZ=Europe/Paris
- WATCHTOWER_SCHEDULE=0 30 1 * * *
- WATCHTOWER_LABEL_ENABLE=true
- WATCHTOWER_CLEANUP=true
- WATCHTOWER_REMOVE_VOLUMES=true
- WATCHTOWER_NOTIFICATIONS_LEVEL=debug
- WATCHTOWER_TIMEOUT=30s
- WATCHTOWER_NOTIFICATIONS=gotify
- WATCHTOWER_NOTIFICATION_GOTIFY_URL=https://gotify.mondomaine.com
- WATCHTOWER_NOTIFICATION_GOTIFY_TOKEN=xxxxxxxxxxxxxxxxxxx
volumes:
- /var/run/docker.sock:/var/run/docker.sock
restart: unless-stopped
networks:
gotify_network:
external: true
Cordialement
oracle7😉