Skip to content

Instantly share code, notes, and snippets.

@csharpfritz
Created February 26, 2024 16:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save csharpfritz/9a259c1703effe7dbefa3be3af9bf226 to your computer and use it in GitHub Desktop.
Save csharpfritz/9a259c1703effe7dbefa3be3af9bf226 to your computer and use it in GitHub Desktop.
Docker Compose to run WatchTower
version: "3"
services:
watchtower:
image: containrrr/watchtower:armhf-latest
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /jfritz/.docker/config.json:/config.json
command: ["--interval", "30", "--cleanup"]
restart: always
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment