Skip to content

Instantly share code, notes, and snippets.

@viertelwissen
Last active April 12, 2022 13:34
Show Gist options
  • Select an option

  • Save viertelwissen/1853bd1e4998a5b572d119783ae01c88 to your computer and use it in GitHub Desktop.

Select an option

Save viertelwissen/1853bd1e4998a5b572d119783ae01c88 to your computer and use it in GitHub Desktop.
Watchtower docker-compose

Watchtower docker-compose

version: '3'
services:
watchtower:
container_name: watchtower
hostname: watchtower
image: containrrr/watchtower:latest
restart: always
volumes:
- /var/run/docker.sock:/var/run/docker.sock
environment:
TZ: Europe/Berlin
WATCHTOWER_SCHEDULE: "0 0 4 * * *"
WATCHTOWER_CLEANUP: "true"
WATCHTOWER_LABEL_ENABLE: "true"
WATCHTOWER_INCLUDE_STOPPED: "true"
labels:
com.centurylinklabs.watchtower.enable: "true"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment