-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy path.env
27 lines (18 loc) · 934 Bytes
/
.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
## Note: This file is read by `compose.yaml` for it's environment variables.
## So the services that docker-compose brings up will also use the below configuration.
# Database (db) config
## Root password can be autogenerated. It will be printed out on first run.
MYSQL_RANDOM_ROOT_PASSWORD=true
## You can set it manually if you wish. Remember to unset MYSQL_RANDOM_ROOT_PASSWORD like below.
#MYSQL_RANDOM_ROOT_PASSWORD=
#MYSQL_ROOT_PASSWORD=poorpasswordavoid
## Name of database to create on mysql init (first run).
MYSQL_DATABASE=mediator-persistence.db
## User to generate on mysql init (first run).
MYSQL_USER=mediator
MYSQL_PASSWORD=mediator-pass
# Mediator (mediator) config
## Full URL that mediator can use to connect to the database.
MYSQL_URL=mysql://mediator:mediator-pass@localhost:3306/mediator-persistence.db
## This is the address at which the mediator will listen for connections.
ENDPOINT_ROOT=0.0.0.0:8005