2020-03-22 17:01:54 +00:00
|
|
|
version: '3'
|
|
|
|
services:
|
|
|
|
jitsi-xmpp:
|
|
|
|
build: ./jitsi-xmpp
|
2020-03-27 08:02:49 +00:00
|
|
|
image: superboum/amd64_jitsi_xmpp:v1
|
|
|
|
network_mode: host
|
2020-03-22 17:01:54 +00:00
|
|
|
ports:
|
|
|
|
- "5222:5222"
|
|
|
|
- "5347:5347"
|
|
|
|
- "5280:5280"
|
|
|
|
env_file: [ 'dev.env' ]
|
2020-03-22 17:14:16 +00:00
|
|
|
volumes: [ './jitsi-certs/:/certs:ro' ]
|
2020-03-22 17:01:54 +00:00
|
|
|
jitsi-front:
|
|
|
|
build: ./jitsi-front
|
2020-03-27 08:02:49 +00:00
|
|
|
image: superboum/amd64_jitsi_front:v1
|
|
|
|
network_mode: host
|
2020-03-22 17:01:54 +00:00
|
|
|
ports:
|
2020-03-22 17:21:32 +00:00
|
|
|
- "443:443"
|
2020-03-22 17:01:54 +00:00
|
|
|
env_file: [ 'dev.env' ]
|
2020-03-22 17:21:32 +00:00
|
|
|
volumes: [ './jitsi-certs/:/certs:ro' ]
|
2020-03-22 17:01:54 +00:00
|
|
|
jitsi-conference-focus:
|
|
|
|
build: ./jitsi-conference-focus
|
2020-03-27 08:02:49 +00:00
|
|
|
image: superboum/amd64_jitsi_conference_focus:v1
|
|
|
|
network_mode: host
|
2020-03-22 17:01:54 +00:00
|
|
|
env_file: [ 'dev.env' ]
|
2020-03-22 17:14:16 +00:00
|
|
|
volumes: [ './jitsi-certs/:/certs:ro' ]
|
2020-03-22 18:47:10 +00:00
|
|
|
jitsi-videobridge:
|
|
|
|
build: ./jitsi-videobridge
|
2020-03-27 22:27:52 +00:00
|
|
|
image: superboum/amd64_jitsi_videobridge:v4
|
2020-03-27 08:02:49 +00:00
|
|
|
network_mode: host
|
2020-03-22 18:47:10 +00:00
|
|
|
ports:
|
|
|
|
- "4443:4443"
|
|
|
|
- "10000:10000/udp"
|
|
|
|
env_file: [ 'dev.env' ]
|
|
|
|
volumes: [ './jitsi-certs/:/certs:ro' ]
|
|
|
|
|