DB_USER=invidious DB_PASSWORD=invidious DB_HOST=invidious-postgres DB_PORT=5432 DB_NAME=invidious ## Note: The 'database_url' setting allows the use of UNIX ## sockets. To do so, remove the IP address (or FQDN) and port ## and append the 'host' parameter. E.g: ## postgres://kemal:kemal@/invidious?host=/var/run/postgresql ## ## Accepted values: a postgres:// URI ## Default: postgres://kemal:kemal@localhost:5432/invidious INVIDIOUS_DATABASE_URL=postgres://${DB_PASSWORD}:${DB_USER}@${DB_HOST}:${DB_PORT}/${DB_NAME} POSTGRES_USER=${DB_USER} POSTGRES_PASSWORD=${DB_PASSWORD} POSTGRES_DB=${DB_NAME}