docs: clarify VITE_API_URL usage; remove FRONTEND_API_URL; add storage vars; simplify compose mounts and external DB example (refs #18)

This commit is contained in:
2025-09-05 14:51:34 +02:00
parent ecbc48815d
commit 758c085467
3 changed files with 38 additions and 7 deletions
+4 -4
View File
@@ -41,13 +41,13 @@ services:
env_file: .env
environment:
- NODE_ENV=production
- DB_HOST=postgres
- DB_HOST=${DB_HOST:-postgres}
- REDIS_HOST=redis
- PHOTOS_DIR=/app/storage/events
volumes:
- ./storage:/app/storage
- ./logs:/app/logs
- ./data:/app/data
- ${APP_STORAGE}:/app/storage
- ${LOGS}:/app/logs
- ${APP_DATA}:/app/data
ports:
- "${BACKEND_PORT:-3001}:3000"
networks: