Compare commits

...

9 Commits

Author SHA1 Message Date
07714d2b04 Merge pull request 'Reverting --wait parameter' (#57) from adding-back-wait into main
All checks were successful
Remote Deployment Pipeline / Prepare Context (push) Successful in 2s
Remote Deployment Pipeline / Deploy (Staging) (push) Successful in 52s
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 1m12s
Remote Deployment Pipeline / Deploy (Production) (push) Successful in 57s
Reviewed-on: #57
2026-05-08 21:40:14 +02:00
5c1bc7d803 Reverting --wait parameter
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) Has been skipped
Remote Deployment Pipeline / Cleanup Preview (pull_request) Successful in 12s
Remote Deployment Pipeline / Deploy (Pre-Prod) (pull_request) Has been skipped
Remote Deployment Pipeline / Deploy (Production) (pull_request) Has been skipped
2026-05-08 21:38:34 +02:00
89e4d31328 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
2026-05-08 21:13:38 +02:00
5fbd781b7f Add docker-compose client configuration
All checks were successful
Remote Deployment Pipeline / Prepare Context (pull_request) Successful in 4s
Remote Deployment Pipeline / Deploy (Staging) (pull_request) Has been skipped
Remote Deployment Pipeline / Deploy (Dev/Preview) (pull_request) Has been skipped
Remote Deployment Pipeline / Deploy (Pre-Prod) (pull_request) Has been skipped
Remote Deployment Pipeline / Cleanup Preview (pull_request) Successful in 13s
Remote Deployment Pipeline / Deploy (Production) (pull_request) Has been skipped
2026-05-08 21:11:55 +02:00
cde5833837 Merge pull request 'Refactoredshared_network configuration' (#55) from refactore-shared_network-config into main
Some checks failed
Remote Deployment Pipeline / Prepare Context (push) Successful in 2s
Remote Deployment Pipeline / Deploy (Staging) (push) Successful in 1m35s
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) Failing after 1m32s
Remote Deployment Pipeline / Deploy (Production) (push) Has been skipped
Reviewed-on: #55
2026-05-08 20:56:38 +02:00
da537fddf6 Refactoredshared_network configuration
All checks were successful
Remote Deployment Pipeline / Prepare Context (pull_request) Successful in 5m47s
Remote Deployment Pipeline / Deploy (Staging) (pull_request) Has been skipped
Remote Deployment Pipeline / Deploy (Dev/Preview) (pull_request) Has been skipped
Remote Deployment Pipeline / Deploy (Pre-Prod) (pull_request) Has been skipped
Remote Deployment Pipeline / Cleanup Preview (pull_request) Successful in 13s
Remote Deployment Pipeline / Deploy (Production) (pull_request) Has been skipped
2026-05-08 20:51:15 +02:00
bcb28d45f6 Merge pull request 'Update traefik Docker tag to v3.7' (#53) from renovate/traefik-3.x into main
All checks were successful
Remote Deployment Pipeline / Prepare Context (push) Successful in 2s
Remote Deployment Pipeline / Deploy (Staging) (push) Successful in 1m20s
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 1m12s
Remote Deployment Pipeline / Deploy (Production) (push) Successful in 57s
Reviewed-on: #53
2026-05-08 18:57:32 +02:00
ac84b99142 Update traefik Docker tag to v3.7
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) Has been skipped
Remote Deployment Pipeline / Deploy (Pre-Prod) (pull_request) Has been skipped
Remote Deployment Pipeline / Cleanup Preview (pull_request) Successful in 13s
Remote Deployment Pipeline / Deploy (Production) (pull_request) Has been skipped
2026-05-08 02:28:41 +00:00
70e5374ae1 Merge pull request 'Update traefik:v3.6 Docker digest to f79c88e' (#52) from renovate/traefik-v3.6 into main
Some checks failed
Remote Deployment Pipeline / Prepare Context (push) Successful in 3m16s
Remote Deployment Pipeline / Deploy (Dev/Preview) (push) Has been skipped
Remote Deployment Pipeline / Cleanup Preview (push) Has been skipped
Remote Deployment Pipeline / Deploy (Staging) (push) Waiting to run
Remote Deployment Pipeline / Deploy (Pre-Prod) (push) Has been cancelled
Remote Deployment Pipeline / Deploy (Production) (push) Has been cancelled
Reviewed-on: #52
2026-05-07 19:56:05 +02:00
4 changed files with 18 additions and 9 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 -f docker-compose.dev.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 --wait
# ------------------------------------------------------------------ # ------------------------------------------------------------------
# STAGE 3: DEPLOY STAGING # STAGE 3: DEPLOY STAGING
@@ -92,7 +92,7 @@ jobs:
SCRIPT_AFTER: | SCRIPT_AFTER: |
set -e set -e
cd ${{ env.REMOTE_STAGING_PATH }} 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 --wait
# ------------------------------------------------------------------ # ------------------------------------------------------------------
# STAGE 3.5: DEPLOY PRE-PROD # STAGE 3.5: DEPLOY PRE-PROD
@@ -119,7 +119,7 @@ jobs:
SCRIPT_AFTER: | SCRIPT_AFTER: |
set -e set -e
cd ${{ env.REMOTE_PREPROD_PATH }} cd ${{ env.REMOTE_PREPROD_PATH }}
docker compose --env-file preprod.env -f docker-compose.yaml -f docker-compose.prod.yaml -f docker-compose.preprod.yaml up -d --build --remove-orphans docker compose --env-file preprod.env -f docker-compose.yaml -f docker-compose.prod.yaml -f docker-compose.preprod.yaml up -d --build --remove-orphans --wait
- name: Run E2E Tests - name: Run E2E Tests
uses: appleboy/ssh-action@0ff4204d59e8e51228ff73bce53f80d53301dee2 # v1.2.5 uses: appleboy/ssh-action@0ff4204d59e8e51228ff73bce53f80d53301dee2 # v1.2.5
@@ -181,7 +181,7 @@ jobs:
SCRIPT_AFTER: | SCRIPT_AFTER: |
set -e set -e
cd ${{ env.REMOTE_PROD_PATH }} cd ${{ env.REMOTE_PROD_PATH }}
docker compose --env-file prod.env -f docker-compose.yaml -f docker-compose.prod.yaml up -d --build --remove-orphans docker compose --env-file prod.env -f docker-compose.yaml -f docker-compose.prod.yaml up -d --build --remove-orphans --wait
# Run E2E Tests # Run E2E Tests
echo "Running E2E tests..." echo "Running E2E tests..."

View File

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

View File

@@ -3,6 +3,7 @@ services:
networks: networks:
- proxy - proxy
- staging-network - staging-network
- shared_network
networks: networks:
legacy-nginx: legacy-nginx:
name: proxy name: proxy
@@ -10,3 +11,6 @@ networks:
staging-network: staging-network:
name: staging_proxy name: staging_proxy
external: true external: true
shared_network:
name: prod_shared-network
external: true

View File

@@ -1,12 +1,11 @@
services: services:
traefik: traefik:
image: "traefik:v3.6@sha256:f79c88ed5252ae1e31c757a9796d751461ddb502437b8d8526db9e12605a82eb" image: "traefik:v3.7@sha256:eb328e2c806c53aafbbace6c451fa54d268961261a85452fcf0fb752a30c17be"
restart: unless-stopped restart: unless-stopped
security_opt: security_opt:
- no-new-privileges:true - no-new-privileges:true
networks: networks:
- proxy - proxy
- shared_network
command: command:
- "--providers.docker=true" - "--providers.docker=true"
- "--providers.docker.exposedbydefault=false" - "--providers.docker.exposedbydefault=false"
@@ -52,8 +51,5 @@ services:
- traefik.http.routers.https.tls.certresolver=letsencrypt - traefik.http.routers.https.tls.certresolver=letsencrypt
networks: networks:
proxy: proxy:
shared_network:
name: prod_shared-network
external: true
volumes: volumes:
letsencrypt: letsencrypt: