chore(compose): default POSTGRES_DB to mission_control

This commit is contained in:
Ishaan (OpenClaw)
2026-02-07 07:15:53 +00:00
parent 175126a44b
commit affce2aba8
3 changed files with 4 additions and 4 deletions

View File

@@ -6,7 +6,7 @@ FRONTEND_PORT=3000
BACKEND_PORT=8000 BACKEND_PORT=8000
# --- database --- # --- database ---
POSTGRES_DB=openclaw_agency POSTGRES_DB=mission_control
POSTGRES_USER=postgres POSTGRES_USER=postgres
POSTGRES_PASSWORD=postgres POSTGRES_PASSWORD=postgres
POSTGRES_PORT=5432 POSTGRES_PORT=5432

View File

@@ -1,6 +1,6 @@
ENVIRONMENT=dev ENVIRONMENT=dev
LOG_LEVEL=INFO LOG_LEVEL=INFO
DATABASE_URL=postgresql+psycopg://postgres:postgres@localhost:5432/openclaw_agency DATABASE_URL=postgresql+psycopg://postgres:postgres@localhost:5432/mission_control
REDIS_URL=redis://localhost:6379/0 REDIS_URL=redis://localhost:6379/0
CORS_ORIGINS=http://localhost:3000 CORS_ORIGINS=http://localhost:3000
BASE_URL= BASE_URL=

View File

@@ -4,7 +4,7 @@ services:
db: db:
image: postgres:16-alpine image: postgres:16-alpine
environment: environment:
POSTGRES_DB: ${POSTGRES_DB:-openclaw_agency} POSTGRES_DB: ${POSTGRES_DB:-mission_control}
POSTGRES_USER: ${POSTGRES_USER:-postgres} POSTGRES_USER: ${POSTGRES_USER:-postgres}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-postgres} POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-postgres}
volumes: volumes:
@@ -36,7 +36,7 @@ services:
- ./backend/.env.example - ./backend/.env.example
environment: environment:
# Override localhost defaults for container networking # Override localhost defaults for container networking
DATABASE_URL: postgresql+psycopg://${POSTGRES_USER:-postgres}:${POSTGRES_PASSWORD:-postgres}@db:5432/${POSTGRES_DB:-openclaw_agency} DATABASE_URL: postgresql+psycopg://${POSTGRES_USER:-postgres}:${POSTGRES_PASSWORD:-postgres}@db:5432/${POSTGRES_DB:-mission_control}
REDIS_URL: redis://redis:6379/0 REDIS_URL: redis://redis:6379/0
CORS_ORIGINS: ${CORS_ORIGINS:-http://localhost:3000} CORS_ORIGINS: ${CORS_ORIGINS:-http://localhost:3000}
DB_AUTO_MIGRATE: ${DB_AUTO_MIGRATE:-true} DB_AUTO_MIGRATE: ${DB_AUTO_MIGRATE:-true}