zkt26/zadanie 1/stop-app.sh
2026-03-22 12:58:49 +01:00

18 lines
599 B
Bash
Executable File
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.

#!/bin/bash
# =============================================================
# stop-app.sh Pozastavenie aplikácie
# =============================================================
# Zastaví kontajnery ale ZACHOVÁ:
# - zväzok db-data (dáta databázy)
# - sieť blog-network
# - zostavené obrazy
# Po stop-app.sh môžete znova spustiť start-app.sh
# a aplikácia bude presne v takom stave, v akom ste ju nechali.
# =============================================================
echo "Zastavujem aplikáciu..."
docker compose stop
echo "Aplikácia zastavená. Dáta sú zachované."