forked from Deuxfleurs/nixcfg
Add a docker-compose for Jitsi
This commit is contained in:
parent
e37c1f9057
commit
ea1b0e9d19
1 changed files with 35 additions and 0 deletions
35
cluster/prod/app/jitsi/build/docker-compose.yml
Normal file
35
cluster/prod/app/jitsi/build/docker-compose.yml
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
version: '3.4'
|
||||||
|
services:
|
||||||
|
# VoIP
|
||||||
|
jitsi-meet:
|
||||||
|
build:
|
||||||
|
context: ./jitsi/build/jitsi-meet
|
||||||
|
args:
|
||||||
|
# https://github.com/jitsi/jitsi-meet
|
||||||
|
MEET_TAG: stable/jitsi-meet_6826
|
||||||
|
image: superboum/amd64_jitsi_meet:v5
|
||||||
|
|
||||||
|
jitsi-conference-focus:
|
||||||
|
build:
|
||||||
|
context: ./jitsi/build/jitsi-conference-focus
|
||||||
|
args:
|
||||||
|
# https://github.com/jitsi/jicofo
|
||||||
|
JICOFO_TAG: stable/jitsi-meet_6826
|
||||||
|
image: superboum/amd64_jitsi_conference_focus:v9
|
||||||
|
|
||||||
|
jitsi-videobridge:
|
||||||
|
build:
|
||||||
|
context: ./jitsi/build/jitsi-videobridge
|
||||||
|
args:
|
||||||
|
# https://github.com/jitsi/jitsi-videobridge
|
||||||
|
# note: JVB is not tagged with non-stable tags
|
||||||
|
JVB_TAG: stable/jitsi-meet_6826
|
||||||
|
image: superboum/amd64_jitsi_videobridge:v20
|
||||||
|
|
||||||
|
jitsi-xmpp:
|
||||||
|
build:
|
||||||
|
context: ./jitsi/build/jitsi-xmpp
|
||||||
|
args:
|
||||||
|
MEET_TAG: stable/jitsi-meet_6826
|
||||||
|
PROSODY_VERSION: 0.11.12-1
|
||||||
|
image: superboum/amd64_jitsi_xmpp:v10
|
Loading…
Reference in a new issue