V 1.0.0: Netzwerk im Docker angepasst

mailto vor die Adresse im footer
This commit is contained in:
2026-02-23 10:47:19 +00:00
parent e28cca1c46
commit fec587a524
8 changed files with 103 additions and 22 deletions

17
docker-compose.local.yml Normal file
View File

@@ -0,0 +1,17 @@
# Docker Compose für lokale Entwicklung auf Esprimo (ohne Traefik)
services:
werte-app:
build:
context: .
args:
BUILD_DATE: ${BUILD_DATE:-$(date +%d.%m.%Y)}
container_name: werte-next-app
restart: unless-stopped
ports:
- "0.0.0.0:3000:3000"
environment:
- NODE_ENV=production
- DB_HOST=${DB_HOST}
- DB_USER=${DB_USER}
- DB_PASS=${DB_PASS}
- DB_NAME=${DB_NAME}