APP_PORT Variable für compose added

This commit is contained in:
2026-07-27 21:47:27 +02:00
parent d53fd8742d
commit ec00519b7a
2 changed files with 3 additions and 2 deletions
+2 -2
View File
@@ -2,14 +2,14 @@
#
# docker compose build
# docker compose up -d
# curl http://127.0.0.1:8080/health.php
# curl http://127.0.0.1:${APP_Port}/health.php
services:
web:
build: .
restart: unless-stopped
ports:
- "8080:80"
- "${APP_Port=8080}:80"
environment:
DATABASE_URL: postgresql://flixcooks:flixcooks_prod@postgres:5432/flixcooks
FLIXCOOKS_ADMIN_KEY: ${FLIXCOOKS_ADMIN_KEY:-change-me-in-production}