From 8d7db44c08c3a75396762783f927e2efb80fe861 Mon Sep 17 00:00:00 2001 From: Paul Nothaft Date: Sun, 4 Jan 2026 22:42:24 +0100 Subject: [PATCH] fix: Use valid Swarm restart condition 'any' instead of 'unless-stopped' --- docker-compose.prod.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-compose.prod.yml b/docker-compose.prod.yml index b5202eb..3e0c9a6 100644 --- a/docker-compose.prod.yml +++ b/docker-compose.prod.yml @@ -11,7 +11,7 @@ services: - minio-webui-network deploy: restart_policy: - condition: unless-stopped + condition: any # Combined app (backend + frontend) app: @@ -50,7 +50,7 @@ services: - redis deploy: restart_policy: - condition: unless-stopped + condition: any labels: - "traefik.enable=true" - "traefik.http.routers.minio-webui.rule=Host(`minio-webui.local.nothaft.cloud`)"