feat: Add pre-production deployment stage with E2E tests, a dedicated environment file, and update production deployment dependency. #30

Merged
kovagoadi merged 26 commits from test_preprod into main 2026-04-09 21:12:34 +02:00
2 changed files with 13 additions and 1 deletions
Showing only changes of commit 3040024480 - Show all commits

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