From 8770476d61d630dc34337ffc31cb5a49072c9dff Mon Sep 17 00:00:00 2001 From: cclohmar Date: Fri, 10 Jul 2026 16:28:20 +0100 Subject: [PATCH] fix: force clean all old pods before fresh deploy --- deploy.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/deploy.sh b/deploy.sh index 80e0715..56986fb 100755 --- a/deploy.sh +++ b/deploy.sh @@ -39,6 +39,8 @@ if [ "$GREENFIELD" = true ]; then systemctl disable nextworkspace 2>/dev/null || true rm -f /etc/systemd/system/nextworkspace.service systemctl daemon-reload + # Force clean all old pods and containers + podman pod rm -f -a 2>/dev/null || true podman rm -f caddy authelia launcher 2>/dev/null || true podman network rm "$NETWORK_NAME" 2>/dev/null || true