-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
50 lines (49 loc) · 1.29 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
48
49
50
version: "3"
services:
strapi:
image: strapi/strapi
environment:
DATABASE_CLIENT: postgres
DATABASE_NAME: ${DATABASE_NAME}
DATABASE_HOST: postgres
DATABASE_PORT: ${DATABASE_PORT}
DATABASE_USERNAME: ${DATABASE_USERNAME}
DATABASE_PASSWORD: ${DATABASE_PASSWORD}
volumes:
- ./strapi:/srv/app
ports:
- "1337:1337"
depends_on:
- postgres
postgres:
image: postgres
environment:
POSTGRES_DB: ${DATABASE_NAME}
POSTGRES_USER: ${DATABASE_USERNAME}
POSTGRES_PASSWORD: ${DATABASE_PASSWORD}
ports:
- "5432:5432"
volumes:
- ./data2:/var/lib/postgresql/data
openvidu:
image: openvidu/openvidu-server-kms:2.15.0
ports:
- "4443:4443"
environment:
OPENVIDU_RECORDING: "true"
OPENVIDU_RECOFDING_PATH: /root/Server/camtact_server/recording
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /root/Server/camtact_server/recording:/root/Server/camtact_server/recording
janus-gateway:
image: "canyan/janus-gateway:0.10.7"
command: ["/usr/local/bin/janus", "-F", "/usr/local/etc/janus"]
ports:
- "8188:8188"
- "8088:8088"
- "8089:8089"
- "8889:8889"
- "8000:8000"
- "7088:7088"
- "7089:7089"
restart: always