feat: Add helper scripts for startup and shutdown

This commit is contained in:
Jörn Guy Süß 2025-07-15 12:08:34 +10:00
parent ea5752f59b
commit 0674128568
2 changed files with 10 additions and 0 deletions

5
down.sh Executable file
View File

@ -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

5
up.sh Executable file
View File

@ -0,0 +1,5 @@
#!/bin/bash
# Run Docker Compose
docker compose up --detach --force-recreate --renew-anon-volumes --always-recreate-deps