diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2022-08-25 01:06:06 +0200 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2022-08-25 01:06:06 +0200 |
commit | ea1b0e9d19d0e1457fa6f6aee593f56d4347ae32 (patch) | |
tree | a1c622995d47a338e944c1c106160ebf4f759da6 /cluster | |
parent | e37c1f9057ed986ac50b86463a4dbe6bf5d77f02 (diff) | |
download | nixcfg-ea1b0e9d19d0e1457fa6f6aee593f56d4347ae32.tar.gz nixcfg-ea1b0e9d19d0e1457fa6f6aee593f56d4347ae32.zip |
Add a docker-compose for Jitsi
Diffstat (limited to 'cluster')
-rw-r--r-- | cluster/prod/app/jitsi/build/docker-compose.yml | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/cluster/prod/app/jitsi/build/docker-compose.yml b/cluster/prod/app/jitsi/build/docker-compose.yml new file mode 100644 index 0000000..99b0ee0 --- /dev/null +++ b/cluster/prod/app/jitsi/build/docker-compose.yml @@ -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 |