blob: 3fc0e26cd44a6d1636d8849e0a44f6417bc0895d (
plain) (
blame)
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.4'
services:
jitsi-xmpp:
build: ./jitsi-xmpp
image: superboum/amd64_jitsi_xmpp:v1
network_mode: host
ports:
- "5222:5222"
- "5347:5347"
- "5280:5280"
env_file: [ 'dev.env' ]
volumes: [ './jitsi-certs/:/certs:ro' ]
jitsi-front:
build:
context: ./jitsi-front
network: host
#^-- I have some DNS problems on Fedora 32 in Docker
image: superboum/amd64_jitsi_front:v5
ports:
- "443:443"
env_file: [ 'dev.env' ]
volumes: [ './jitsi-certs/:/certs:ro' ]
jitsi-conference-focus:
build:
context: ./jitsi-conference-focus
network: host
image: superboum/amd64_jitsi_conference_focus:v2
env_file: [ 'dev.env' ]
volumes: [ './jitsi-certs/:/certs:ro' ]
jitsi-videobridge:
build:
context: ./jitsi-videobridge
network: host
image: superboum/amd64_jitsi_videobridge:v9
network_mode: host
ports:
- "8080:8080/tcp"
- "10000:10000/udp"
env_file: [ 'dev.env' ]
volumes: [ './jitsi-certs/:/certs:ro' ]
|