forked from Deuxfleurs/infrastructure
Upgrade jitsi
This commit is contained in:
parent
1c4bc090fc
commit
7a5a701bbf
6 changed files with 33 additions and 23 deletions
|
@ -16,20 +16,22 @@ services:
|
||||||
#network: host
|
#network: host
|
||||||
#^-- I have some DNS problems on Fedora 32 in Docker
|
#^-- I have some DNS problems on Fedora 32 in Docker
|
||||||
image: superboum/amd64_jitsi_front:v4
|
image: superboum/amd64_jitsi_front:v4
|
||||||
network_mode: host
|
|
||||||
ports:
|
ports:
|
||||||
- "443:443"
|
- "443:443"
|
||||||
env_file: [ 'dev.env' ]
|
env_file: [ 'dev.env' ]
|
||||||
volumes: [ './jitsi-certs/:/certs:ro' ]
|
volumes: [ './jitsi-certs/:/certs:ro' ]
|
||||||
jitsi-conference-focus:
|
jitsi-conference-focus:
|
||||||
build: ./jitsi-conference-focus
|
build:
|
||||||
image: superboum/amd64_jitsi_conference_focus:v1
|
context: ./jitsi-conference-focus
|
||||||
network_mode: host
|
network: host
|
||||||
|
image: superboum/amd64_jitsi_conference_focus:v2
|
||||||
env_file: [ 'dev.env' ]
|
env_file: [ 'dev.env' ]
|
||||||
volumes: [ './jitsi-certs/:/certs:ro' ]
|
volumes: [ './jitsi-certs/:/certs:ro' ]
|
||||||
jitsi-videobridge:
|
jitsi-videobridge:
|
||||||
build: ./jitsi-videobridge
|
build:
|
||||||
image: superboum/amd64_jitsi_videobridge:v6
|
context: ./jitsi-videobridge
|
||||||
|
network: host
|
||||||
|
image: superboum/amd64_jitsi_videobridge:v9
|
||||||
network_mode: host
|
network_mode: host
|
||||||
ports:
|
ports:
|
||||||
- "8080:8080/tcp"
|
- "8080:8080/tcp"
|
||||||
|
|
|
@ -7,4 +7,4 @@ JITSI_PROSODY_HOST=127.0.0.1
|
||||||
JITSI_CERTS_FOLDER=/certs/
|
JITSI_CERTS_FOLDER=/certs/
|
||||||
JITSI_NAT_PUBLIC_IP=77.204.7.239
|
JITSI_NAT_PUBLIC_IP=77.204.7.239
|
||||||
JITSI_NAT_LOCAL_IP=192.168.0.18
|
JITSI_NAT_LOCAL_IP=192.168.0.18
|
||||||
JITSI_VIDEO_TCP=995
|
JITSI_VIDEO_TCP=8080
|
||||||
|
|
|
@ -1,22 +1,22 @@
|
||||||
FROM debian:buster AS builder
|
FROM debian:buster AS builder
|
||||||
|
|
||||||
|
ENV VERSION=4510
|
||||||
RUN apt-get update && \
|
RUN apt-get update && \
|
||||||
apt-get install -y openjdk-11-jdk maven git unzip && \
|
apt-get install -y openjdk-11-jdk maven wget unzip && \
|
||||||
git clone --depth=1 https://github.com/jitsi/jicofo.git && \
|
wget https://github.com/jitsi/jicofo/archive/jitsi-meet_${VERSION}.zip -O jicofo.zip && \
|
||||||
|
unzip jicofo.zip && \
|
||||||
|
mv jicofo-jitsi-meet_${VERSION} jicofo && \
|
||||||
cd jicofo && \
|
cd jicofo && \
|
||||||
mvn package -DskipTests -Dassembly.skipAssembly=false
|
mvn package -DskipTests -Dassembly.skipAssembly=false && \
|
||||||
|
|
||||||
RUN cd jicofo && \
|
|
||||||
unzip target/jicofo-1.1-SNAPSHOT-archive.zip && \
|
unzip target/jicofo-1.1-SNAPSHOT-archive.zip && \
|
||||||
mv jicofo-1.1-SNAPSHOT /srv/jicofo
|
mv jicofo-1.1-SNAPSHOT /srv/build
|
||||||
|
|
||||||
|
|
||||||
FROM debian:buster
|
FROM debian:buster
|
||||||
|
|
||||||
RUN apt-get update && \
|
RUN apt-get update && \
|
||||||
apt-get install -y openjdk-11-jdk ca-certificates
|
apt-get install -y openjdk-11-jdk ca-certificates
|
||||||
|
|
||||||
COPY --from=builder /srv/jicofo /srv/jicofo
|
COPY --from=builder /srv/build /srv/jicofo
|
||||||
COPY jicofo /usr/local/bin/jicofo
|
COPY jicofo /usr/local/bin/jicofo
|
||||||
|
|
||||||
CMD ["/usr/local/bin/jicofo"]
|
CMD ["/usr/local/bin/jicofo"]
|
||||||
|
|
|
@ -1,21 +1,27 @@
|
||||||
FROM debian:buster AS builder
|
FROM debian:buster AS builder
|
||||||
|
|
||||||
RUN apt-get update && \
|
RUN apt-get update && \
|
||||||
apt-get install -y wget unzip
|
apt-get install -y wget unzip maven openjdk-11-jdk
|
||||||
|
|
||||||
ENV VERSION=1132
|
ENV VERSION=4468
|
||||||
RUN wget https://download.jitsi.org/jitsi-videobridge/linux/jitsi-videobridge-linux-x64-${VERSION}.zip -O jvb.zip && \
|
RUN wget https://github.com/jitsi/jitsi-videobridge/archive/stable/jitsi-meet_${VERSION}.zip -O jvb.zip && \
|
||||||
unzip jvb.zip && \
|
unzip jvb.zip && \
|
||||||
mv jitsi-videobridge-linux-x64-${VERSION} jvb
|
mv jitsi-videobridge-stable-jitsi-meet_${VERSION} jvb && \
|
||||||
|
cd jvb && \
|
||||||
|
mvn package -DskipTests && \
|
||||||
|
unzip target/jitsi-videobridge-*.zip && \
|
||||||
|
mv jitsi-videobridge-*-SNAPSHOT build
|
||||||
|
|
||||||
FROM debian:buster
|
FROM debian:buster
|
||||||
|
|
||||||
RUN apt-get update && \
|
RUN apt-get update && \
|
||||||
apt-get install -y openjdk-11-jdk
|
apt-get install -y openjdk-11-jdk
|
||||||
|
|
||||||
COPY --from=builder /jvb /srv/jvb
|
COPY --from=builder /jvb/build /srv/jvb
|
||||||
ENV HOME=/root
|
ENV HOME=/root
|
||||||
WORKDIR /root
|
WORKDIR /root
|
||||||
COPY jvb_run /usr/local/bin/jvb_run
|
COPY jvb_run /usr/local/bin/jvb_run
|
||||||
|
|
||||||
|
ENV JAVA_SYS_PROPS="-Dnet.java.sip.communicator.SC_HOME_DIR_LOCATION=/root -Dnet.java.sip.communicator.SC_HOME_DIR_NAME=.sip-communicator -Dnet.java.sip.communicator.SC_LOG_DIR_LOCATION=/var/log/jitsi"
|
||||||
|
|
||||||
CMD ["/usr/local/bin/jvb_run"]
|
CMD ["/usr/local/bin/jvb_run"]
|
||||||
|
|
|
@ -11,11 +11,13 @@ cat > /root/.sip-communicator/sip-communicator.properties <<EOF
|
||||||
org.jitsi.impl.neomedia.transform.srtp.SRTPCryptoContext.checkReplay=false
|
org.jitsi.impl.neomedia.transform.srtp.SRTPCryptoContext.checkReplay=false
|
||||||
# The videobridge uses 443 by default with 4443 as a fallback, but since we're already
|
# The videobridge uses 443 by default with 4443 as a fallback, but since we're already
|
||||||
# running nginx on 443 in this example doc, we specify 4443 manually to avoid a race condition
|
# running nginx on 443 in this example doc, we specify 4443 manually to avoid a race condition
|
||||||
org.jitsi.videobridge.TCP_HARVESTER_PORT=${JITSI_VIDEO_TCP}
|
org.ice4j.ice.harvest.TCP_HARVESTER_PORT=${JITSI_VIDEO_TCP}
|
||||||
org.ice4j.ice.harvest.NAT_HARVESTER_LOCAL_ADDRESS=${JITSI_NAT_LOCAL_IP}
|
org.ice4j.ice.harvest.NAT_HARVESTER_LOCAL_ADDRESS=${JITSI_NAT_LOCAL_IP}
|
||||||
org.ice4j.ice.harvest.NAT_HARVESTER_PUBLIC_ADDRESS=${JITSI_NAT_PUBLIC_IP}
|
org.ice4j.ice.harvest.NAT_HARVESTER_PUBLIC_ADDRESS=${JITSI_NAT_PUBLIC_IP}
|
||||||
|
org.jitsi.videobridge.TCP_HARVESTER_PORT=${JITSI_VIDEO_TCP}
|
||||||
org.jitsi.videobridge.NAT_HARVESTER_LOCAL_ADDRESS=${JITSI_NAT_LOCAL_IP}
|
org.jitsi.videobridge.NAT_HARVESTER_LOCAL_ADDRESS=${JITSI_NAT_LOCAL_IP}
|
||||||
org.jitsi.videobridge.NAT_HARVESTER_PUBLIC_ADDRESS=${JITSI_NAT_PUBLIC_IP}
|
org.jitsi.videobridge.NAT_HARVESTER_PUBLIC_ADDRESS=${JITSI_NAT_PUBLIC_IP}
|
||||||
|
org.jitsi.videobridge.DISABLE_TCP_HARVESTER=false
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
[ -v JITSI_DEBUG ] && cat >> /root/.sip-communicator/sip-communicator.properties <<EOF
|
[ -v JITSI_DEBUG ] && cat >> /root/.sip-communicator/sip-communicator.properties <<EOF
|
||||||
|
|
|
@ -157,7 +157,7 @@ job "jitsi" {
|
||||||
task "jicofo" {
|
task "jicofo" {
|
||||||
driver = "docker"
|
driver = "docker"
|
||||||
config {
|
config {
|
||||||
image = "superboum/amd64_jitsi_conference_focus:v1"
|
image = "superboum/amd64_jitsi_conference_focus:v2"
|
||||||
network_mode = "host"
|
network_mode = "host"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -189,7 +189,7 @@ job "jitsi" {
|
||||||
task "videobridge" {
|
task "videobridge" {
|
||||||
driver = "docker"
|
driver = "docker"
|
||||||
config {
|
config {
|
||||||
image = "superboum/amd64_jitsi_videobridge:v6"
|
image = "superboum/amd64_jitsi_videobridge:v9"
|
||||||
network_mode = "host"
|
network_mode = "host"
|
||||||
port_map {
|
port_map {
|
||||||
video1_port = 8080
|
video1_port = 8080
|
||||||
|
|
Loading…
Reference in a new issue