From 643ea5bd88eddd437ba1e5f2d5b2da4adf0283b1 Mon Sep 17 00:00:00 2001 From: CDaut Date: Mon, 27 Nov 2023 10:29:02 +0100 Subject: [PATCH] added dockerfile for watchtower --- watchtower/docker-compose.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 watchtower/docker-compose.yml diff --git a/watchtower/docker-compose.yml b/watchtower/docker-compose.yml new file mode 100644 index 0000000..719d4e3 --- /dev/null +++ b/watchtower/docker-compose.yml @@ -0,0 +1,12 @@ +version: "3" + +services: + watchtower: + image: containrrr/watchtower + volumes: + - /var/run/docker.sock:/var/run/docker.sock + environment: + WATCHTOWER_NOTIFICATION_REPORT: "true" + WATCHTOWER_NOTIFICATION_URL: NOTIFICATOION URL ACCORDING TO https://containrrr.dev/shoutrrr/v0.8/services + WATCHTOWER_NOTIFICATIONS_DELAY: 300 #required to start Notification service before sending notification + restart: unless-stopped \ No newline at end of file