2 Commits
Author SHA1 Message Date
kovagoadi 2a566bf1db Fix typo
Remote Deployment Pipeline / Prepare Context (pull_request) Successful in 3s
Remote Deployment Pipeline / Deploy (Staging) (pull_request) Has been skipped
Remote Deployment Pipeline / Deploy (Pre-Prod) (pull_request) Successful in 1m10s
Remote Deployment Pipeline / Deploy (Dev/Preview) (pull_request) Successful in 53s
Remote Deployment Pipeline / Cleanup Preview (pull_request) Has been skipped
Remote Deployment Pipeline / Deploy (Production) (pull_request) Has been skipped
2026-04-09 21:02:12 +02:00
kovagoadi 3040024480 Added staging network for development deployment 2026-04-09 21:01:46 +02:00
2 changed files with 13 additions and 1 deletions
+1 -1
View File
@@ -66,7 +66,7 @@ jobs:
SCRIPT_AFTER: |
set -e
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
+12
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