diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2020-03-27 09:03:39 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2020-03-27 09:03:39 +0100 |
commit | fd6e6aa1413602fc11bf79f7cf08120d996b8b3a (patch) | |
tree | 5e3b2e7f6ad788ef8a0f785056400442bb4d1cc7 /docker/jitsi/02_run.yml | |
parent | 08101b82621457195c9a080237913d2c5a30208e (diff) | |
parent | a95017cf1e1761fef1ec029105d1c25f954741d4 (diff) | |
download | infrastructure-fd6e6aa1413602fc11bf79f7cf08120d996b8b3a.tar.gz infrastructure-fd6e6aa1413602fc11bf79f7cf08120d996b8b3a.zip |
Merge branch 'feature/jitsi'
Diffstat (limited to 'docker/jitsi/02_run.yml')
-rw-r--r-- | docker/jitsi/02_run.yml | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/docker/jitsi/02_run.yml b/docker/jitsi/02_run.yml new file mode 100644 index 0000000..af615a9 --- /dev/null +++ b/docker/jitsi/02_run.yml @@ -0,0 +1,36 @@ +version: '3' +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: ./jitsi-front + image: superboum/amd64_jitsi_front:v1 + network_mode: host + ports: + - "443:443" + env_file: [ 'dev.env' ] + volumes: [ './jitsi-certs/:/certs:ro' ] + jitsi-conference-focus: + build: ./jitsi-conference-focus + image: superboum/amd64_jitsi_conference_focus:v1 + network_mode: host + env_file: [ 'dev.env' ] + volumes: [ './jitsi-certs/:/certs:ro' ] + jitsi-videobridge: + build: ./jitsi-videobridge + image: superboum/amd64_jitsi_videobridge:v1 + network_mode: host + ports: + - "4443:4443" + - "10000:10000/udp" + env_file: [ 'dev.env' ] + volumes: [ './jitsi-certs/:/certs:ro' ] + |