ci: restrict staging deploy container cleanup

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
Kpa-clawbot
2026-03-29 12:42:31 -07:00
parent c81744fed7
commit 424e4675ae
+2 -2
View File
@@ -261,10 +261,10 @@ jobs:
- name: Stop old containers
run: |
# Kill legacy container names from pre-rename era
docker rm -f meshcore-analyzer meshcore-prod meshcore-staging meshcore-staging-go 2>/dev/null || true
docker rm -f meshcore-staging meshcore-staging-go 2>/dev/null || true
# Kill current container names
docker compose --profile staging-go stop staging-go 2>/dev/null || true
docker rm -f corescope-staging-go corescope-prod corescope-staging 2>/dev/null || true
docker rm -f corescope-staging-go corescope-staging 2>/dev/null || true
fuser -k 82/tcp 2>/dev/null || true
sleep 2