diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2020-04-26 23:07:01 +0200 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2020-04-26 23:07:01 +0200 |
commit | 7a5a701bbf8abcfec6f6364687696581186bb8a3 (patch) | |
tree | 6d63dd7f542f5ceb4ec27175975da76cfca21a0c /docker/jitsi/02_run.yml | |
parent | 1c4bc090fc737662740260a6ad88709b87d1b83c (diff) | |
download | infrastructure-7a5a701bbf8abcfec6f6364687696581186bb8a3.tar.gz infrastructure-7a5a701bbf8abcfec6f6364687696581186bb8a3.zip |
Upgrade jitsi
Diffstat (limited to 'docker/jitsi/02_run.yml')
-rw-r--r-- | docker/jitsi/02_run.yml | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/docker/jitsi/02_run.yml b/docker/jitsi/02_run.yml index b87f376..8d0fe75 100644 --- a/docker/jitsi/02_run.yml +++ b/docker/jitsi/02_run.yml @@ -16,20 +16,22 @@ services: #network: host #^-- I have some DNS problems on Fedora 32 in Docker image: superboum/amd64_jitsi_front:v4 - network_mode: host ports: - "443:443" env_file: [ 'dev.env' ] volumes: [ './jitsi-certs/:/certs:ro' ] jitsi-conference-focus: - build: ./jitsi-conference-focus - image: superboum/amd64_jitsi_conference_focus:v1 - network_mode: host + build: + context: ./jitsi-conference-focus + network: host + image: superboum/amd64_jitsi_conference_focus:v2 env_file: [ 'dev.env' ] volumes: [ './jitsi-certs/:/certs:ro' ] jitsi-videobridge: - build: ./jitsi-videobridge - image: superboum/amd64_jitsi_videobridge:v6 + build: + context: ./jitsi-videobridge + network: host + image: superboum/amd64_jitsi_videobridge:v9 network_mode: host ports: - "8080:8080/tcp" |