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:
parent
308972c265
commit
3d2abe9e70
|
|
@ -4,9 +4,9 @@
|
||||||
# Database configuration
|
# Database configuration
|
||||||
DB_HOST=calejo-postgres
|
DB_HOST=calejo-postgres
|
||||||
DB_PORT=5432
|
DB_PORT=5432
|
||||||
DB_NAME=calejo_production
|
DB_NAME=calejo
|
||||||
DB_USER=calejo_user
|
DB_USER=calejo
|
||||||
DB_PASSWORD=production_password
|
DB_PASSWORD=password
|
||||||
|
|
||||||
# Disable internal protocol servers
|
# Disable internal protocol servers
|
||||||
OPCUA_ENABLED=false
|
OPCUA_ENABLED=false
|
||||||
|
|
|
||||||
|
|
@ -32,9 +32,9 @@ services:
|
||||||
image: postgres:15
|
image: postgres:15
|
||||||
container_name: calejo-postgres
|
container_name: calejo-postgres
|
||||||
environment:
|
environment:
|
||||||
- POSTGRES_DB=calejo_production
|
- POSTGRES_DB=calejo
|
||||||
- POSTGRES_USER=calejo_user
|
- POSTGRES_USER=calejo
|
||||||
- POSTGRES_PASSWORD=production_password
|
- POSTGRES_PASSWORD=password
|
||||||
ports:
|
ports:
|
||||||
- "5432:5432"
|
- "5432:5432"
|
||||||
volumes:
|
volumes:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue