diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2022-01-27 09:57:49 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2022-01-27 09:57:49 +0100 |
commit | 831ddd30558d9015f9219ae28384a414d7b73bf6 (patch) | |
tree | 4e872f9fdbabb87584b0fde23ebd4e97ded6c899 | |
parent | a13a02c45ca212c7ac0aae6dfa510219b6c9f46c (diff) | |
download | infrastructure-831ddd30558d9015f9219ae28384a414d7b73bf6.tar.gz infrastructure-831ddd30558d9015f9219ae28384a414d7b73bf6.zip |
Some fixes
-rw-r--r-- | app/core/deploy/core.hcl | 3 | ||||
-rw-r--r-- | app/docker-compose.yml | 2 | ||||
-rw-r--r-- | app/jitsi/build/jitsi-videobridge/Dockerfile | 2 | ||||
-rw-r--r-- | app/jitsi/deploy/jitsi.hcl | 2 |
4 files changed, 4 insertions, 5 deletions
diff --git a/app/core/deploy/core.hcl b/app/core/deploy/core.hcl index f04f864..0c1792b 100644 --- a/app/core/deploy/core.hcl +++ b/app/core/deploy/core.hcl @@ -18,7 +18,7 @@ job "core" { driver = "docker" config { - image = "darkgallium/amd64_diplonat:v3" + image = "lxpz/amd64_diplonat:3" network_mode = "host" readonly_rootfs = true privileged = true @@ -33,7 +33,6 @@ job "core" { template { data = <<EOH -DIPLONAT_PRIVATE_IP={{ env "attr.unique.network.ip-address" }} DIPLONAT_REFRESH_TIME=60 DIPLONAT_EXPIRATION_TIME=300 DIPLONAT_CONSUL_NODE_NAME={{ env "attr.unique.hostname" }} diff --git a/app/docker-compose.yml b/app/docker-compose.yml index a1f0722..e7fde9e 100644 --- a/app/docker-compose.yml +++ b/app/docker-compose.yml @@ -68,7 +68,7 @@ services: # https://github.com/jitsi/jitsi-videobridge # note: JVB is not tagged with non-stable tags JVB_TAG: stable/jitsi-meet_6826 - image: superboum/amd64_jitsi_videobridge:v19 + image: superboum/amd64_jitsi_videobridge:v20 jitsi-xmpp: build: diff --git a/app/jitsi/build/jitsi-videobridge/Dockerfile b/app/jitsi/build/jitsi-videobridge/Dockerfile index 254f220..1f2509b 100644 --- a/app/jitsi/build/jitsi-videobridge/Dockerfile +++ b/app/jitsi/build/jitsi-videobridge/Dockerfile @@ -16,7 +16,7 @@ RUN unzip jvb/target/jitsi-videobridge*.zip && \ FROM debian:bookworm RUN apt-get update && \ - apt-get install -y openjdk-11-jre-headless curl + apt-get install -y openjdk-11-jre-headless curl iproute2 COPY --from=builder /jitsi-videobridge/build /usr/share/jvb COPY jvb_run /usr/local/bin/jvb_run diff --git a/app/jitsi/deploy/jitsi.hcl b/app/jitsi/deploy/jitsi.hcl index 47b8dfc..3e87ede 100644 --- a/app/jitsi/deploy/jitsi.hcl +++ b/app/jitsi/deploy/jitsi.hcl @@ -201,7 +201,7 @@ EOF task "videobridge" { driver = "docker" config { - image = "superboum/amd64_jitsi_videobridge:v19" + image = "superboum/amd64_jitsi_videobridge:v20" network_mode = "host" ports = [ "video_port" ] ulimit { |