forked from tl-open-source/tl-rtc-file
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
41 lines (38 loc) · 881 Bytes
/
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
version: '3'
services:
api-local:
profiles: ['local']
container_name: tl-rtc-file-api-local
image: iamtsm/tl-rtc-file-api-local
env_file:
- docker/local.env
ports:
- 9092:9092
command: localapi
socket-local:
profiles: ['local']
container_name: tl-rtc-file-socket-local
image: iamtsm/tl-rtc-file-socket-local
env_file:
- docker/local.env
ports:
- 8444:8444
command: localsocket
api-server:
profiles: ['server']
container_name: tl-rtc-file-api-server
image: iamtsm/tl-rtc-file-api-server
env_file:
- docker/server.env
ports:
- 9092:9092
command: serverapi
socket-server:
profiles: ['server']
container_name: tl-rtc-file-socket-server
image: iamtsm/tl-rtc-file-socket-server
env_file:
- docker/server.env
ports:
- 8444:8444
command: serversocket