From fba941af1b5adfc365b320962c2f184d3bb4a334 Mon Sep 17 00:00:00 2001 From: Kpa-clawbot <259247574+Kpa-clawbot@users.noreply.github.com> Date: Sun, 29 Mar 2026 13:20:41 -0700 Subject: [PATCH] fix: use compose rm -sf (not down) to stop only staging, not prod down tears down the entire compose project including prod. rm -sf stops and removes just the named service. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index fdae50e2..cf91476c 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -260,7 +260,7 @@ jobs: - name: Stop old containers run: | - docker compose --profile staging-go down 2>/dev/null || true + docker compose --profile staging-go rm -sf staging-go 2>/dev/null || true # Kill legacy container names from pre-rename era docker rm -f meshcore-staging meshcore-staging-go corescope-staging 2>/dev/null || true sleep 2