Added testing network
All checks were successful
Remote Deployment Pipeline / Prepare Context (pull_request) Successful in 3s
Remote Deployment Pipeline / Deploy (Staging) (pull_request) Has been skipped
Remote Deployment Pipeline / Deploy (Dev/Preview) (pull_request) Successful in 50s
Remote Deployment Pipeline / Cleanup Preview (pull_request) Has been skipped
Remote Deployment Pipeline / Deploy (Production) (pull_request) Has been skipped

This commit is contained in:
2025-11-29 17:59:10 +01:00
parent ba8b44d8a0
commit a1c128112d
2 changed files with 10 additions and 1 deletions

View File

@@ -63,7 +63,7 @@ jobs:
# 2. Run Docker Compose after sync
SCRIPT_AFTER: |
cd ${{ needs.prepare_context.outputs.pr_path }}
docker compose --env-file dev.env -f docker-compose.yaml up -d --build --remove-orphans
docker compose --env-file dev.env -f docker-compose.yaml -f docker-compose.dev.yaml up -d --build --remove-orphans
# ------------------------------------------------------------------
# STAGE 3: DEPLOY STAGING

9
docker-compose.dev.yaml Normal file
View File

@@ -0,0 +1,9 @@
services:
traefik:
networks:
- proxy
- legacy-nginx
networks:
legacy-nginx:
name: proxy
external: true