-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdotenv
More file actions
22 lines (15 loc) · 868 Bytes
/
dotenv
File metadata and controls
22 lines (15 loc) · 868 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# The name of the database for the application
POSTGRES_DB=bbbstatus
# the username of the user that will be used by the application
POSTGRES_USER=bbbstatus
# the password of the user that will be used by the application
POSTGRES_PASSWORD=bbbstatus
# The port the postgresql database should bind to
DB_PORT=5432
# the database connection string according to https://www.postgresql.org/docs/12/libpq-connect.html#id-1.7.3.8.3.6 change username, password and database name accordingly.
DB_CONNECTION_STRING=postgresql://bbbstatus:bbbstatus@db:5432/bbbstatus
# Where the data should be stored defaults to current folder (careful, if you use the default only run the docker compose file within the same folder)
DATABASE_DIRECTORY=.
TRUSTED_PROXIES=127.0.0.1/8,172.17.0.1/16,172.18.0.1/16,::1/128
# A comma seperated list of BBB Servers
BBB_SERVERS="bbb.example.com"