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

16 lines
552 B
Bash
Executable File
Raw 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
# =============================================================
# prepare-app.sh Príprava aplikácie
# =============================================================
# Zostaví Docker obraz backendu.
# Sieť a zväzok vytvorí Docker Compose automaticky pri štarte.
# =============================================================
echo "Pripravujem aplikáciu..."
# Zostav obraz backendu podľa ./backend/Dockerfile
# --no-cache = vždy čerstvý build, ignoruje cache
docker compose build --no-cache
echo "Príprava dokončená."