add sh scripts

This commit is contained in:
Ubuntu 2025-04-11 10:55:28 +00:00
parent 1a255ef6da
commit 90e8fe7c7d
4 changed files with 18 additions and 0 deletions

0
sk1/prepare.sh Normal file → Executable file
View File

6
sk1/remove-app.sh Executable file
View File

@ -0,0 +1,6 @@
#!/bin/bash
echo "Odstraňujem aplikáciu - všetky kontajnery, siete a zväzky..."
docker-compose down --volumes --remove-orphans
echo "Aplikácia bola odstránená."

6
sk1/start-app.sh Executable file
View File

@ -0,0 +1,6 @@
#!/bin/bash
echo "Spúšťam aplikáciu..."
docker-compose start
echo "Aplikácia bola spustená."

6
sk1/stop-app.sh Executable file
View File

@ -0,0 +1,6 @@
#!/bin/bash
echo "Zastavujem bežiace kontajnery..."
docker-compose stop
echo "Kontajnery boli úspešne zastavené."