Merge pull request 'Add docker-compose client configuration' (#56) from add-client-docker-compose-config into main
All checks were successful
Remote Deployment Pipeline / Prepare Context (push) Successful in 2s
Remote Deployment Pipeline / Deploy (Staging) (push) Successful in 58s
Remote Deployment Pipeline / Deploy (Dev/Preview) (push) Has been skipped
Remote Deployment Pipeline / Cleanup Preview (push) Has been skipped
Remote Deployment Pipeline / Deploy (Pre-Prod) (push) Successful in 1m20s
Remote Deployment Pipeline / Deploy (Production) (push) Successful in 1m20s

Reviewed-on: #56
This commit is contained in:
2026-05-08 21:13:38 +02:00
2 changed files with 10 additions and 1 deletions

View File

@@ -92,7 +92,7 @@ jobs:
SCRIPT_AFTER: |
set -e
cd ${{ env.REMOTE_STAGING_PATH }}
docker compose --env-file staging.env -f docker-compose.yaml up -d --build --remove-orphans
docker compose --env-file staging.env -f docker-compose.yaml -f docker-compose.client.yaml up -d --build --remove-orphans
# ------------------------------------------------------------------
# STAGE 3.5: DEPLOY PRE-PROD

View File

@@ -0,0 +1,9 @@
services:
traefik:
networks:
- proxy
- shared_network
networks:
shared_network:
name: prod_shared-network
external: true