commit 45de639e6b2021e704ab82c6da0a1df4641115af Author: Roland St. Amand III Date: Sat Mar 15 13:38:46 2025 +0000 first commit diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..e8f2544 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,17 @@ +services: + watchtower: + container_name: watchtower + image: containrrr/watchtower + restart: unless-stopped + volumes: + - /var/run/docker.sock:/var/run/docker.sock + ports: + - "8084:8080" + environment: + WATCHTOWER_INTERVAL: 600 # Check for updates every 10 minutes (in seconds) + WATCHTOWER_NOTIFICATIONS: gotify + WATCHTOWER_NOTIFICATION_GOTIFY_URL: "https://gotify.stamand.us/" + WATCHTOWER_NOTIFICATION_GOTIFY_TOKEN: "A2aWB3Uj9bG_2Rh" + WATCHTOWER_CLEANUP: "true" + WATCHTOWER_MONITOR_ONLY: "true" + WATCHTOWER_NOTIFICATION_TITLE_TAG: "apps01 stamand"