Fixed network

This commit is contained in:
Frank
2026-03-11 07:52:11 +01:00
parent cc6c6a6456
commit a68eeb3ac6
2 changed files with 3 additions and 1 deletions

View File

@@ -159,3 +159,4 @@ networks:
ipam:
config:
- subnet: 172.23.0.0/16
gateway: 172.23.0.1

View File

@@ -8,7 +8,8 @@ DOCKER_DIR=$(cd "$(dirname "$0")" && pwd)
ROOT_DIR=$(cd "$DOCKER_DIR/.." && pwd)
echo "Stopping and removing containers..."
(cd "$DOCKER_DIR" && docker compose -f compose.yaml -f compose.override.yaml down -v) || true
(cd "$DOCKER_DIR" && docker compose -f compose.yaml -f compose.override.yaml down -v --remove-orphans) || true
docker network rm escapepage_network || true
docker rm -f escapepage-db escapepage-php escapepage-nginx escapepage-mercure escapepage-mailer escapepage-php-worker || true
echo "Clearing Docker build cache..."