chore: switch default postgres host port to 5434

This commit is contained in:
chengkml
2026-05-01 10:49:29 +08:00
parent 792f5037c7
commit c7b018b10a
6 changed files with 35 additions and 7 deletions
+2 -2
View File
@@ -5,7 +5,7 @@ API_CORS_ORIGINS=http://localhost:3000,http://127.0.0.1:3000
API_CORS_ORIGIN_REGEX=
DATABASE_URL=
DB_HOST=127.0.0.1
DB_PORT=5433
DB_PORT=5434
DB_NAME=postgres
DB_SCHEMA=public
DB_USERNAME=fquiz
@@ -43,7 +43,7 @@ INITIAL_ADMIN_PASSWORD=change-me-strong-password
POSTGRES_DB=fquiz
POSTGRES_USER=fquiz
POSTGRES_PASSWORD=fquiz
POSTGRES_PORT=5433
POSTGRES_PORT=5434
POSTGRES_IMAGE=docker.m.daocloud.io/pgvector/pgvector:pg16
PYTHON_BASE_IMAGE=docker.m.daocloud.io/library/python:3.11-slim
NODE_BASE_IMAGE=docker.m.daocloud.io/library/node:22-alpine