To ease the deployment of the application on infrastructure not running k8s we created a compose file for production.
12 lines
245 B
Plaintext
12 lines
245 B
Plaintext
# Postgresql db container configuration
|
|
POSTGRES_DB=docs
|
|
POSTGRES_USER=docs
|
|
POSTGRES_PASSWORD=<Set postgresql password>
|
|
|
|
# App database configuration
|
|
DB_HOST=postgresql
|
|
DB_NAME=docs
|
|
DB_USER=docs
|
|
DB_PASSWORD=<Same password as above>
|
|
DB_PORT=5432
|