From 78e735c959c537f6162d923dd2d08111b7ae2a2d Mon Sep 17 00:00:00 2001 From: "IETM_FIXE\\ietm6" Date: Sun, 14 Jun 2026 16:51:46 +0200 Subject: [PATCH] =?UTF-8?q?Mise=20=C3=A0=20jour=20de=20la=20partie=20watch?= =?UTF-8?q?tower=20;=20pas=20n=C3=A9c=C3=A9ssaire=20tout=20le=20temps?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docker-compose.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index e022e46..dd2aac9 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -252,7 +252,11 @@ services: # API HTTP pour declenchement manuel via le bouton UI (Core -> Watchtower). WATCHTOWER_HTTP_API_UPDATE: "true" WATCHTOWER_HTTP_API_PERIODIC_POLLS: "true" - WATCHTOWER_HTTP_API_TOKEN: "${WATCHTOWER_TOKEN:?set WATCHTOWER_TOKEN in .env (re-run installer)}" + # Pas de ":?" ici : Compose interpole TOUT le fichier avant de filtrer + # par profile, donc un ":?" planterait le "up" meme quand autoupdate est + # inactif. L'installeur genere toujours WATCHTOWER_TOKEN ; defaut vide + # pour ne rien casser sur les deploiements sans autoupdate. + WATCHTOWER_HTTP_API_TOKEN: "${WATCHTOWER_TOKEN:-}" WATCHTOWER_TIMEOUT: 60s WATCHTOWER_NOTIFICATIONS_LEVEL: info TZ: ${TZ:-Europe/Paris}