diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2020-03-22 18:01:54 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2020-03-22 18:01:54 +0100 |
commit | cef60898b5db0e314a435121606b04b1ad6ffbdd (patch) | |
tree | 12d34ff821c0aa473af7fdf4a3ec6e46c3e702e8 /docker/jitsi/jitsi-conference-focus | |
parent | e24522d8285878240ee0d873616bc177313aa7ba (diff) | |
download | infrastructure-cef60898b5db0e314a435121606b04b1ad6ffbdd.tar.gz infrastructure-cef60898b5db0e314a435121606b04b1ad6ffbdd.zip |
Rework jitsi-xmpp to support cert gen
Diffstat (limited to 'docker/jitsi/jitsi-conference-focus')
-rw-r--r-- | docker/jitsi/jitsi-conference-focus/Dockerfile | 22 | ||||
-rwxr-xr-x | docker/jitsi/jitsi-conference-focus/jicofo | 8 |
2 files changed, 30 insertions, 0 deletions
diff --git a/docker/jitsi/jitsi-conference-focus/Dockerfile b/docker/jitsi/jitsi-conference-focus/Dockerfile index e69de29..7933ed9 100644 --- a/docker/jitsi/jitsi-conference-focus/Dockerfile +++ b/docker/jitsi/jitsi-conference-focus/Dockerfile @@ -0,0 +1,22 @@ +FROM debian:buster AS builder + +RUN apt-get update && \ + apt-get install -y openjdk-11-jdk maven git unzip && \ + git clone --depth=1 https://github.com/jitsi/jicofo.git && \ + cd jicofo && \ + mvn package -DskipTests -Dassembly.skipAssembly=false + +RUN cd jicofo && \ + unzip target/jicofo-1.1-SNAPSHOT-archive.zip && \ + mv jicofo-1.1-SNAPSHOT /srv/jicofo + + +FROM debian:buster + +RUN apt-get update && \ + apt-get install -y openjdk-11-jdk + +COPY --from=builder /srv/jicofo /srv/jicofo +COPY jicofo /usr/local/bin/jicofo + +CMD ["/usr/local/bin/jicofo"] diff --git a/docker/jitsi/jitsi-conference-focus/jicofo b/docker/jitsi/jitsi-conference-focus/jicofo new file mode 100755 index 0000000..34b5548 --- /dev/null +++ b/docker/jitsi/jitsi-conference-focus/jicofo @@ -0,0 +1,8 @@ +#!/bin/bash + +/srv/jicofo/jicofo.sh \ + --host=${JITSI_PROSODY_HOST} \ + --domain=jitsi.deuxfleurs.fr \ + --secret=${JITSI_SECRET_JICOFO_COMPONENT} \ + --user_domain=auth.jitsi.deuxfleurs.fr \ + --user_password=${JITSI_SECRET_JICOFO_USER} |