forked from Deuxfleurs/infrastructure
Fix front version
This commit is contained in:
parent
7a5a701bbf
commit
6060d05c20
3 changed files with 9 additions and 8 deletions
|
@ -13,9 +13,9 @@ services:
|
|||
jitsi-front:
|
||||
build:
|
||||
context: ./jitsi-front
|
||||
#network: host
|
||||
network: host
|
||||
#^-- I have some DNS problems on Fedora 32 in Docker
|
||||
image: superboum/amd64_jitsi_front:v4
|
||||
image: superboum/amd64_jitsi_front:v5
|
||||
ports:
|
||||
- "443:443"
|
||||
env_file: [ 'dev.env' ]
|
||||
|
|
|
@ -1,13 +1,14 @@
|
|||
FROM debian:buster AS builder
|
||||
|
||||
ENV VERSION=4048
|
||||
RUN apt-get update && \
|
||||
apt-get install -y npm git nodejs make && \
|
||||
git clone --depth=1 https://github.com/jitsi/jitsi-meet.git && \
|
||||
apt-get install -y npm git nodejs make wget unzip && \
|
||||
wget https://github.com/jitsi/jitsi-meet/archive/${VERSION}.zip -O jitsi-meet.zip && \
|
||||
unzip jitsi-meet.zip && \
|
||||
mv jitsi-meet-${VERSION} jitsi-meet && \
|
||||
cd jitsi-meet && \
|
||||
npm install && \
|
||||
make
|
||||
|
||||
RUN cd jitsi-meet && \
|
||||
make && \
|
||||
sed -i \
|
||||
"s/OPTIMAL_BROWSERS: \[.*\],/ OPTIMAL_BROWSERS: [ 'chrome', 'chromium', 'nwjs', 'electron' ],/g" \
|
||||
interface_config.js && \
|
||||
|
|
|
@ -93,7 +93,7 @@ job "jitsi" {
|
|||
task "front" {
|
||||
driver = "docker"
|
||||
config {
|
||||
image = "superboum/amd64_jitsi_front:v4"
|
||||
image = "superboum/amd64_jitsi_front:v5"
|
||||
network_mode = "host"
|
||||
port_map {
|
||||
https_port = 443
|
||||
|
|
Loading…
Reference in a new issue