We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Everything works on debian 11 but doesn't work on photon 4
root@vs-kv-com-ji03 [ /opt/docker-jitsi-meet-stable-8319 ]# lsb_release -a
Distributor ID: VMware Photon OS Description: VMware Photon OS 4.0 Release: 4.0 Codename: Photon
root@vs-kv-com-ji03 [ /opt/docker-jitsi-meet-stable-8319 ]# docker run --rm busybox nslookup google.com
Server: 1.1.1.1 Address: 1.1.1.1:53 Non-authoritative answer: Name: google.com Address: 142.250.203.206 Non-authoritative answer: Name: google.com Address: 2a00:1450:401b:810::200e
docker build \ --build-arg JITSI_REPO=jitsi --build-arg JITSI_RELEASE=stable --build-arg TARGETPLATFORM=linux/amd64 \ --progress plain \ --tag jitsi/jibri \ jibri
root@vs-kv-com-ji03 [ /opt/docker-jitsi-meet-stable-8319 ]# cat jibri/Dockerfile
ARG JITSI_REPO=jitsi ARG BASE_TAG=stable-8319 #ARG BASE_TAG=latest FROM ${JITSI_REPO}/base-java:${BASE_TAG} LABEL org.opencontainers.image.title="Jitsi Broadcasting Infrastructure (jibri)" LABEL org.opencontainers.image.description="Components for recording and/or streaming a conference." LABEL org.opencontainers.image.url="https://github.com/jitsi/jibri" LABEL org.opencontainers.image.source="https://github.com/jitsi/docker-jitsi-meet" LABEL org.opencontainers.image.documentation="https://jitsi.github.io/handbook/" ARG TARGETPLATFORM ARG USE_CHROMIUM=0 #ARG CHROME_RELEASE=latest #ARG CHROMEDRIVER_MAJOR_RELEASE=latest ARG CHROME_RELEASE=109.0.5414.74 ARG CHROMEDRIVER_MAJOR_RELEASE=109 COPY rootfs/ / RUN apt-dpkg-wrap apt-get update && \ apt-dpkg-wrap apt-get install -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" jibri libgl1-mesa-dri procps jitsi-upload-integrations jq pulseaudio dbus dbus-x11 rtkit unzip msmtp && \ /usr/bin/install-chrome.sh && \ apt-cleanup && \ adduser jibri rtkit VOLUME /config
build log
Sending build context to Docker daemon 52.22kB Step 1/15 : ARG JITSI_REPO=jitsi Step 2/15 : ARG BASE_TAG=stable-8319 Step 3/15 : FROM ${JITSI_REPO}/base-java:${BASE_TAG} ---> fed4e2e09beb Step 4/15 : LABEL org.opencontainers.image.title="Jitsi Broadcasting Infrastructure (jibri)" ---> Using cache ---> 4a14e2611c00 Step 5/15 : LABEL org.opencontainers.image.description="Components for recording and/or streaming a conference." ---> Using cache ---> 124395a5a8c5 Step 6/15 : LABEL org.opencontainers.image.url="https://github.com/jitsi/jibri" ---> Using cache ---> ab1e6b9544ab Step 7/15 : LABEL org.opencontainers.image.source="https://github.com/jitsi/docker-jitsi-meet" ---> Using cache ---> d6f6971def78 Step 8/15 : LABEL org.opencontainers.image.documentation="https://jitsi.github.io/handbook/" ---> Using cache ---> 8f9029fbad46 Step 9/15 : ARG TARGETPLATFORM ---> Using cache ---> 9b3a6bda90e7 Step 10/15 : ARG USE_CHROMIUM=0 ---> Using cache ---> 0bcabae02e0d Step 11/15 : ARG CHROME_RELEASE=109.0.5414.74 ---> Using cache ---> 2ba63a540870 Step 12/15 : ARG CHROMEDRIVER_MAJOR_RELEASE=109 ---> Using cache ---> 7a6a010bbd31 Step 13/15 : COPY rootfs/ / ---> Using cache ---> 059ca4af8678 Step 14/15 : RUN apt-dpkg-wrap apt-get update && apt-dpkg-wrap apt-get install -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" jibri libgl1-mesa-dri procps jitsi-upload-integrations jq pulseaudio dbus dbus-x11 rtkit unzip msmtp && /usr/bin/install-chrome.sh && apt-cleanup && adduser jibri rtkit ---> Running in e7ec2ad3aad6 Err:1 http://deb.debian.org/debian bullseye InRelease Temporary failure resolving 'deb.debian.org' Err:2 http://ftp.debian.org/debian bullseye-backports InRelease Temporary failure resolving 'ftp.debian.org' Err:3 https://download.jitsi.org stable/ InRelease Temporary failure resolving 'download.jitsi.org' Err:4 http://deb.debian.org/debian-security bullseye-security InRelease Temporary failure resolving 'deb.debian.org' Err:5 http://deb.debian.org/debian bullseye-updates InRelease Temporary failure resolving 'deb.debian.org' Reading package lists... �[91mW: Failed to fetch http://deb.debian.org/debian/dists/bullseye/InRelease Temporary failure resolving 'deb.debian.org' W: Failed to fetch http://deb.debian.org/debian-security/dists/bullseye-security/InRelease Temporary failure resolving 'deb.debian.org' W: Failed to fetch http://deb.debian.org/debian/dists/bullseye-updates/InRelease Temporary failure resolving 'deb.debian.org' W: Failed to fetch http://ftp.debian.org/debian/dists/bullseye-backports/InRelease Temporary failure resolving 'ftp.debian.org' W: Failed to fetch https://download.jitsi.org/stable/InRelease Temporary failure resolving 'download.jitsi.org' W: Some index files failed to download. They have been ignored, or old ones used instead. �[0mReading package lists... Building dependency tree... Reading state information... Package dbus is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source �[91mE: Unable to locate package jibri E: Unable to locate package libgl1-mesa-dri E: Unable to locate package procps E: Unable to locate package jitsi-upload-integrations E: Unable to locate package jq E: Unable to locate package pulseaudio E: Package 'dbus' has no installation candidate E: Unable to locate package dbus-x11 E: Unable to locate package rtkit E: Unable to locate package unzip E: Unable to locate package msmtp �[0m
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Everything works on debian 11 but doesn't work on photon 4
root@vs-kv-com-ji03 [ /opt/docker-jitsi-meet-stable-8319 ]# lsb_release -a
root@vs-kv-com-ji03 [ /opt/docker-jitsi-meet-stable-8319 ]# docker run --rm busybox nslookup google.com
root@vs-kv-com-ji03 [ /opt/docker-jitsi-meet-stable-8319 ]# cat jibri/Dockerfile
build log
The text was updated successfully, but these errors were encountered: