From 6ef65f66bf1032538d5e8c8f98b4f293fc38a9bc Mon Sep 17 00:00:00 2001 From: LRVT <21357789+l4rm4nd@users.noreply.github.com> Date: Sun, 19 Feb 2023 14:01:23 +0100 Subject: [PATCH] Update docker-compose.yml Fix reference for cron scheduling as crontab.guru uses a cron definition of 5 chars, which is not supported by watchtower written in go (requires 6 chron chars). --- watchtower/docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/watchtower/docker-compose.yml b/watchtower/docker-compose.yml index 4021605..77e6ae6 100644 --- a/watchtower/docker-compose.yml +++ b/watchtower/docker-compose.yml @@ -12,7 +12,7 @@ services: #- WATCHTOWER_NOTIFICATION_EMAIL_TO=john.doe@example.com #- WATCHTOWER_NOTIFICATION_EMAIL_SERVER=smtp.google.com #- WATCHTOWER_NOTIFICATIONS=email - - WATCHTOWER_SCHEDULE=0 0 6 * * * # see https://crontab.guru/ + - WATCHTOWER_SCHEDULE=0 0 6 * * * # see https://containrrr.dev/watchtower/arguments/#scheduling - WATCHTOWER_CLEANUP=true # remove unused images afterwards image: containrrr/watchtower:latest labels: