Fix videobridge

This commit is contained in:
Quentin 2020-09-12 22:18:30 +02:00
parent 51e4af08c0
commit 1af6eabc81
5 changed files with 9 additions and 14 deletions

View file

@ -53,7 +53,7 @@ services:
# https://github.com/jitsi/jitsi-videobridge
PREFIXV: stable/jitsi-meet_
VERSION: 4966
image: superboum/amd64_jitsi_videobridge:v10
image: superboum/amd64_jitsi_videobridge:v11
jitsi-xmpp:
build:

View file

@ -35,4 +35,5 @@ EOF
--host=${JITSI_PROSODY_HOST} \
--domain=jitsi.deuxfleurs.fr \
--port=5347 \
--secret=${JITSI_SECRET_VIDEOBRIDGE}
--secret=${JITSI_SECRET_VIDEOBRIDGE} \
--apis=rest,xmpp

View file

@ -1,9 +1,3 @@
/*
* WIP WIP WIP WIP
*
* + NEED TO SET ENV VARIABLES
*/
job "jitsi" {
datacenters = ["dc1"]
type = "service"
@ -17,7 +11,7 @@ job "jitsi" {
task "xmpp" {
driver = "docker"
config {
image = "superboum/amd64_jitsi_xmpp:v1"
image = "superboum/amd64_jitsi_xmpp:v2"
network_mode = "host"
port_map {
xmpp_port = 5222
@ -93,7 +87,7 @@ job "jitsi" {
task "front" {
driver = "docker"
config {
image = "superboum/amd64_jitsi_front:v5"
image = "superboum/amd64_jitsi_meet:v1"
network_mode = "host"
port_map {
https_port = 443
@ -157,7 +151,7 @@ job "jitsi" {
task "jicofo" {
driver = "docker"
config {
image = "superboum/amd64_jitsi_conference_focus:v2"
image = "superboum/amd64_jitsi_conference_focus:v3"
network_mode = "host"
}
@ -189,7 +183,7 @@ job "jitsi" {
task "videobridge" {
driver = "docker"
config {
image = "superboum/amd64_jitsi_videobridge:v9"
image = "superboum/amd64_jitsi_videobridge:v10"
network_mode = "host"
port_map {
video1_port = 8080

View file

@ -1,7 +1,7 @@
version: '3'
services:
jitsi-xmpp:
image: ./jitsi-xmpp
image: ./jitsi-xmpp:v2
command: ["/usr/local/bin/xmpp_gen"]
volumes: [ './jitsi-certs/:/certs:rw' ]
env_file: [ 'dev.env' ]

View file

@ -20,7 +20,7 @@ services:
env_file: [ 'dev.env' ]
volumes: [ './jitsi-certs/:/certs:ro' ]
jitsi-videobridge:
image: superboum/amd64_jitsi_videobridge:v10
image: superboum/amd64_jitsi_videobridge:v11
network_mode: host
ports:
- "8080:8080/tcp"