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/docker/jitsi/02_run.yml

42 lines
1 KiB
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:
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:
2020-04-08 19:14:44 +00:00
build:
context: ./jitsi-front
2020-04-27 17:02:00 +00:00
network: host
2020-04-08 19:14:44 +00:00
#^-- I have some DNS problems on Fedora 32 in Docker
2020-04-27 17:02:00 +00:00
image: superboum/amd64_jitsi_front:v5
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-04-26 21:07:01 +00:00
build:
context: ./jitsi-conference-focus
network: host
image: superboum/amd64_jitsi_conference_focus:v2
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-04-26 21:07:01 +00:00
build:
context: ./jitsi-videobridge
network: host
image: superboum/amd64_jitsi_videobridge:v9
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' ]