12 lines
353 B
Bash
Executable File
12 lines
353 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Script dừng Docker cho dự án Lucky Wheel
|
|
echo "🛑 Dừng Lucky Wheel Docker Containers..."
|
|
|
|
docker compose down
|
|
|
|
echo "✅ Đã dừng tất cả containers"
|
|
echo ""
|
|
echo "💡 Để khởi động lại, chạy: ./docker-setup.sh"
|
|
echo "💡 Để xóa tất cả dữ liệu (bao gồm database), chạy: docker compose down -v"
|