fix: correct app port mapping in docker-compose.yml to match environment variable

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
2026-04-27 00:31:25 -04:00
parent 5189446c73
commit ca49565117

View File

@@ -3,9 +3,9 @@ services:
build: ./app
working_dir: /app
ports:
- "${APP_PORT:-3000}:3023"
- "${APP_PORT:-3000}:3000"
environment:
- APP_PORT=3000
- APP_PORT=3023
- NODE_ENV=${NODE_ENV:-development}
- DB_PATH=/var/lib/charactergarden/app.db
- OLLAMA_URL=${OLLAMA_URL:-http://ollama:11434}