This repository has been archived on 2023-03-15. You can view files and clone it, but cannot push or open issues or pull requests.
infrastructure/app/integration/jitsi/02_run.yml

31 lines
784 B
YAML
Raw Normal View History

2020-04-08 19:14:44 +00:00
version: '3.4'
2020-03-22 17:01:54 +00:00
services:
jitsi-xmpp:
2020-09-12 09:15:07 +00:00
image: superboum/amd64_jitsi_xmpp:v2
2020-03-27 08:02:49 +00:00
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-09-12 09:15:07 +00:00
jitsi-meet:
image: superboum/amd64_jitsi_meet:v1
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:
2020-09-12 09:15:07 +00:00
image: superboum/amd64_jitsi_conference_focus:v3
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:
2020-09-12 20:18:30 +00:00
image: superboum/amd64_jitsi_videobridge:v11
2020-03-27 08:02:49 +00:00
network_mode: host
2020-03-22 18:47:10 +00:00
ports:
2020-04-08 19:14:44 +00:00
- "8080:8080/tcp"
2020-03-22 18:47:10 +00:00
- "10000:10000/udp"
env_file: [ 'dev.env' ]
volumes: [ './jitsi-certs/:/certs:ro' ]