add .env.example to frontend and php container and update README.md

This commit is contained in:
2026-01-29 20:09:16 +01:00
parent 7d2af43af4
commit 488fcd273b
7 changed files with 124 additions and 21 deletions
+4 -1
View File
@@ -20,6 +20,7 @@ services:
- "host.docker.internal:host-gateway"
volumes:
- app-code:/var/www/app
- ./docker/php/.env:/tmp/app.env:ro
environment:
- GIT_TOKEN=${GIT_TOKEN}
- BACKEND_GIT_REPO=${BACKEND_GIT_REPO}
@@ -45,8 +46,10 @@ services:
- FRONTEND_GIT_BRANCH=${FRONTEND_GIT_BRANCH}
volumes:
- app-code:/var/www/app
- ./docker/frontend/.env:/tmp/app.env:ro
depends_on:
- php
php:
condition: service_healthy
restart: "no"
nginx: