rwadurian/frontend/admin-web/scripts/clean.sh

9 lines
223 B
Bash

#!/bin/bash
# 清理容器、镜像和卷
set -e
cd "$(dirname "$0")/.."
echo "🧹 清理容器和镜像..."
docker compose down --rmi local --volumes --remove-orphans
docker image prune -f
echo "✅ 清理完成"