ozon-task/deployments/docker-compose/postgres/ozon-task.env

12 lines
345 B
Bash
Raw Permalink Normal View History

2024-06-24 23:34:10 +00:00
# Define storage type for the app
# inmemory (default) - store data in memory (non-persistent)
# postgres - store data in postgres database
APP_STORAGE=postgres
# Postgres configuration for APP_STORAGE=postgres
APP_POSTGRES_HOST=postgres
APP_POSTGRES_PORT=5432
APP_POSTGRES_USER=username
APP_POSTGRES_PASSWORD=password
APP_POSTGRES_DB=database