-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
79 lines (72 loc) · 1.55 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
version: '3'
services:
mongodb:
container_name: mongodb
build:
context: .
dockerfile: ./Dockerfile-mongodb
restart: always
volumes:
- ./SignalingServer/init-mongo.js:/docker-entrypoint-initdb.d/init-mongo.js:ro
- ./mongo-volume:/data/db
ports:
- 27017:27017
networks:
- backend
redis:
container_name: redis
build:
context: .
dockerfile: ./Dockerfile-redis
ports:
- 6379:6379
volumes:
- ./SignalingServer/config/redis.conf:/etc/redis/redis.conf
networks:
- backend
signaling_server:
container_name: signaling_server
build:
context: .
dockerfile: ./Dockerfile-signalingserver.dev
volumes:
- ./SignalingServer:/usr/src/app
ports:
- 9000:9000
links:
- mongodb
- redis
depends_on:
- mongodb
- redis
networks:
- backend
videoconference_app:
container_name: videoconference_app
stdin_open: true
# tty: true
build:
context: .
dockerfile: ./Dockerfile-videoconference.dev
volumes:
- ./video-conference:/usr/src/app
ports:
- 4000:4000
networks:
- backend
# coturn:
# container_name: coturn
# build:
# context: .
# dockerfile: ./Dockerfile-coturn.prod
# restart: unless-stopped
# network_mode: host
# ports:
# - 5349:5349
# - 3478:3478
# command:
# - -c /etc/coturn/turnserver.conf
# - --log-file=stdout
# - --external-ip=$$(detect-external-ip)
networks:
backend: