fix: correct app port mapping in docker-compose.yml to use 3000

This commit is contained in:
2026-04-27 00:44:57 -04:00
parent 76dee7e73f
commit 56c9cce4c7

View File

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