nginx network
Laravel CI-CD (Gitea) / Tests Unitaires (push) Successful in 15s Details
Laravel CI-CD (Gitea) / Build & Push Docker (push) Successful in 1m19s Details
Laravel CI-CD (Gitea) / Déploiement Simplifié (push) Successful in 1s Details

This commit is contained in:
Leon 2026-03-12 17:35:21 +01:00
parent 826c6304b3
commit a9c267e878
1 changed files with 11 additions and 0 deletions

View File

@ -23,6 +23,9 @@ services:
volumes: volumes:
- storage-data:/var/www/html/storage/app - storage-data:/var/www/html/storage/app
- storage-public-data:/var/www/html/storage/app/public - storage-public-data:/var/www/html/storage/app/public
networks:
- nginx
- internal
pgsql: pgsql:
image: postgres:15-alpine # Attention: postgres 18 n'existe pas encore (17 max), 15 est stable image: postgres:15-alpine # Attention: postgres 18 n'existe pas encore (17 max), 15 est stable
@ -40,6 +43,8 @@ services:
interval: 5s interval: 5s
timeout: 5s timeout: 5s
retries: 10 retries: 10
networks:
- internal
volumes: volumes:
pgsql-data: pgsql-data:
@ -48,3 +53,9 @@ volumes:
storage-data: storage-data:
storage-public-data: storage-public-data:
name: starter_storage_public_data name: starter_storage_public_data
networks:
nginx:
external: true
internal:
driver: bridge