Stop MinIO container before deployment
All checks were successful
Deploy MinIO Production / deploy (push) Successful in 32s

This commit is contained in:
Frank John Begornia
2026-01-06 13:41:14 +08:00
parent d8d0388811
commit c9f95e989a

View File

@@ -99,6 +99,9 @@ jobs:
if docker ps --format '{{.Names}}' | grep -q crew-minio; then if docker ps --format '{{.Names}}' | grep -q crew-minio; then
echo " MinIO is currently running" echo " MinIO is currently running"
docker ps | grep crew-minio docker ps | grep crew-minio
echo "🛑 Stopping MinIO container"
docker compose down
else else
echo " MinIO is not running (first deployment)" echo " MinIO is not running (first deployment)"
fi fi