10 lines
281 B
Bash
10 lines
281 B
Bash
|
|
# Postgres database used by bot, parser and API
|
||
|
|
POSTGRES_DB=law_bot_db
|
||
|
|
POSTGRES_USER=lawbot_user
|
||
|
|
POSTGRES_PASSWORD=change_me
|
||
|
|
|
||
|
|
# Inside docker compose keep the service name.
|
||
|
|
# For local host-based tools you can override it with localhost.
|
||
|
|
POSTGRES_HOST=postgredb
|
||
|
|
POSTGRES_PORT=5432
|