Added staging network for development deployment

This commit is contained in:
2026-04-09 21:01:46 +02:00
parent c609933190
commit 3040024480
2 changed files with 13 additions and 1 deletions

View File

@@ -66,7 +66,7 @@ jobs:
SCRIPT_AFTER: | SCRIPT_AFTER: |
set -e set -e
cd ${{ needs.prepare_context.outputs.pr_path }} cd ${{ needs.prepare_context.outputs.pr_path }}
docker compose --env-file dev.env -f docker-compose.yaml up -d --build --remove-orphans --wait docker compose --env-file dev.env -f docker-compose.yaml-f docker-compose.dev.yaml up -d --build --remove-orphans --wait
# ------------------------------------------------------------------ # ------------------------------------------------------------------
# STAGE 3: DEPLOY STAGING # STAGE 3: DEPLOY STAGING

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

@@ -0,0 +1,12 @@
services:
traefik:
networks:
- proxy
- staging-network
networks:
legacy-nginx:
name: proxy
external: true
staging-network:
name: staging_proxy
external: true