onbekende flag

This commit is contained in:
Frank
2026-01-11 15:21:19 +01:00
parent 0e3a3992fa
commit b649d48250
2 changed files with 3 additions and 3 deletions

View File

@@ -4,7 +4,7 @@ set -euo pipefail
# Script to completely restart the project as requested # Script to completely restart the project as requested
echo "Stopping and removing containers..." echo "Stopping and removing containers..."
dc() { (cd "$(dirname "$0")" && docker compose --env-file ../.env -f compose.yaml "$@"); } dc() { (cd "$(dirname "$0")/.." && docker compose -f docker/compose.yaml "$@"); }
dc down --remove-orphans dc down --remove-orphans
echo "Clearing Docker build cache..." echo "Clearing Docker build cache..."

View File

@@ -27,8 +27,8 @@ else
exit 1 exit 1
fi fi
# Helper to run docker compose from the docker/ directory # Helper to run docker compose from the project root
dc() { (cd "$DOCKER_DIR" && $DOCKER_COMPOSE --env-file ../.env -f compose.yaml "$@"); } dc() { (cd "$ROOT_DIR" && $DOCKER_COMPOSE -f docker/compose.yaml "$@"); }
REBUILD=1 REBUILD=1
RECREATE=0 RECREATE=0