ozon-task/deployments/docker-compose/postgres/ozon-task.env
2024-06-25 02:34:10 +03:00

11 lines
345 B
Bash

# 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