From 06741285688ce97c7bdc05b00772f4387fb81fdd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Guy=20S=C3=BC=C3=9F?= Date: Tue, 15 Jul 2025 12:08:34 +1000 Subject: [PATCH] feat: Add helper scripts for startup and shutdown --- down.sh | 5 +++++ up.sh | 5 +++++ 2 files changed, 10 insertions(+) create mode 100755 down.sh create mode 100755 up.sh diff --git a/down.sh b/down.sh new file mode 100755 index 0000000..672f4de --- /dev/null +++ b/down.sh @@ -0,0 +1,5 @@ +#!/bin/bash + +# Stop and remove all containers defined in the Docker Compose file, +# along with any anonymous volumes attached to them. +docker compose down --volumes \ No newline at end of file diff --git a/up.sh b/up.sh new file mode 100755 index 0000000..2e87977 --- /dev/null +++ b/up.sh @@ -0,0 +1,5 @@ +#!/bin/bash + +# Run Docker Compose + +docker compose up --detach --force-recreate --renew-anon-volumes --always-recreate-deps