zkt25/stop-app.sh
2025-03-19 17:03:51 +01:00

10 lines
197 B
Bash
Executable File

#!/bin/bash
# Stop the Flask app container
echo "Stopping Flask app container..."
docker stop flask-app
# Optionally, stop other services like the database here
echo "App stopped successfully!"