docs: 联网搜索服务架构方案全套(plan-final/design-arch/选型决策/整合导览/MCP文档/部署预设/联调手册) bench: 5 方案 + 代理 + 站点矩阵本机实测工程(无密钥) 部署目标:primary mgr1 先行测试(待批准后执行)
12 lines
328 B
Bash
Executable file
12 lines
328 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Tear down all bench-proxy-* containers.
|
|
set -euo pipefail
|
|
ids="$(docker ps -aq --filter 'name=^bench-proxy-' || true)"
|
|
if [[ -z "$ids" ]]; then
|
|
echo "[down] no bench-proxy-* containers"
|
|
exit 0
|
|
fi
|
|
# shellcheck disable=SC2086
|
|
docker rm -f $ids
|
|
echo "[down] removed: $ids"
|
|
rm -rf /tmp/bench-proxy-runtime
|