-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
47 lines (45 loc) · 1.16 KB
/
docker-compose.yml
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
services:
confmapper_server:
container_name: conferencemapper
image: conferencemapper4sip
ports:
- "8081:80"
- "8445:443"
logging:
driver: syslog
options:
tag: "conferencemapper"
depends_on:
my_sql_local:
condition: service_healthy
environment:
DB_PASSWORD: rdv_password
DB_USER: rdv_user
DB_HOST: my_sql_local
DB_DATABASE: rendezvous
JITSI_DOMAIN: 'rdv43.rendez-vous.renater.fr'
NUMBER_LIST: "0978080000,[email protected]"
NUMBER_LABEL_LIST: "FR,SipMediaGW"
JIGASI_EXTANSION_LIST: "'666','555'"
LIFETIME_SHORT: 6
LIFETIME_LONG: 1440
my_sql_local:
container_name: my_sql_local
image: mysql:8.0.31
restart: always
ports:
- "3306:3306"
volumes:
- mysql-data:/var/lib/mysql
environment:
MYSQL_ROOT_PASSWORD: Password4rootroot
MYSQL_DATABASE: rendezvous
MYSQL_USER: rdv_user
MYSQL_PASSWORD: rdv_password
MAX_ALLOWED_PACKET: 1073741824
healthcheck:
test: ["CMD", "mysqladmin" ,"ping", "-h", "localhost"]
timeout: 5s
retries: 10
volumes:
mysql-data: