From 8aa48d26b75f4da740f93b5bdb2456c79abefd4c Mon Sep 17 00:00:00 2001 From: "Gan, Jimmy" Date: Sat, 4 Apr 2026 18:25:11 +0800 Subject: [PATCH] fix: force remove existing container before deploying --- .gitea/workflows/deploy-dev.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitea/workflows/deploy-dev.yml b/.gitea/workflows/deploy-dev.yml index 3ea646c..0f43947 100644 --- a/.gitea/workflows/deploy-dev.yml +++ b/.gitea/workflows/deploy-dev.yml @@ -65,6 +65,7 @@ jobs: # Stop and remove existing container if it exists docker compose -f docker-compose.dev.yml down --remove-orphans || true + docker rm -f nas-dashboard-dev || true # Deploy with host network to avoid network conflicts in CI # The runner is already in gitea_gitea network, causing conflicts