zkt26/z1/stop-app.sh
2026-04-01 10:00:23 +02:00

21 lines
840 B
Bash
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/usr/bin/env bash
# ============================================================
# stop-app.sh Stop all NitheeshWork services (data preserved)
# ============================================================
set -euo pipefail
echo "╔══════════════════════════════════════════════╗"
echo "║ NitheeshWork Stop Application ║"
echo "╚══════════════════════════════════════════════╝"
cd "$(dirname "$0")"
echo ""
echo "▸ Stopping all services (volumes and data are preserved)…"
docker compose stop
echo ""
echo "✔ All services stopped."
echo " Data in volumes is preserved."
echo " Run ./start-app.sh to resume."