fix: Update production database credentials to match existing setup

- Changed DB_USER from calejo_user to calejo
- Changed DB_NAME from calejo_production to calejo
- Updated docker-compose.production.yml to match
This commit is contained in:
openhands 2025-11-01 16:06:01 +00:00
parent 308972c265
commit 3d2abe9e70
2 changed files with 6 additions and 6 deletions

View File

@ -4,9 +4,9 @@
# Database configuration
DB_HOST=calejo-postgres
DB_PORT=5432
DB_NAME=calejo_production
DB_USER=calejo_user
DB_PASSWORD=production_password
DB_NAME=calejo
DB_USER=calejo
DB_PASSWORD=password
# Disable internal protocol servers
OPCUA_ENABLED=false

View File

@ -32,9 +32,9 @@ services:
image: postgres:15
container_name: calejo-postgres
environment:
- POSTGRES_DB=calejo_production
- POSTGRES_USER=calejo_user
- POSTGRES_PASSWORD=production_password
- POSTGRES_DB=calejo
- POSTGRES_USER=calejo
- POSTGRES_PASSWORD=password
ports:
- "5432:5432"
volumes: