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

19 lines
661 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
# =============================================================
# remove-app.sh Úplné odstránenie aplikácie
# =============================================================
# Odstráni VŠETKO čo vytvoril prepare-app.sh a start-app.sh:
# - kontajnery
# - sieť blog-network
# - zväzok db-data (POZOR: dáta z DB sa stratia!)
# - zostavené Docker obrazy
# =============================================================
echo "Odstraňujem aplikáciu..."
# --volumes = zmaže aj pomenované zväzky (dáta DB)
# --rmi all = zmaže aj zostavené obrazy
docker compose down --volumes --rmi all
echo "Aplikácia bola odstránená."