04
Sep
2024

Watchtower mit Bereinigung

Watchtower mit automatischer Bereinigung

 version: "3"
 services:
   watchtower:
     container_name: watchtower
     image: containrrr/watchtower
     volumes:
       - /var/run/docker.sock:/var/run/docker.sock
     restart: unless-stopped
     environment:
       - TZ=Europe/Berlin
       - WATCHTOWER_LIFECYCLE_HOOKS=1 # Enable pre/post-update scripts
     command: --cleanup --run-once --monitor-only --schedule "0 0 4 * * *"

gefunden auf: https://github.com/RPiList/SynVideos/blob/main/Videos/DockerWatchtower/docker-compose.yml

Share

You may also like...

Schreibe einen Kommentar

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert