1234567891011121314151617 |
- LABEL org.opencontainers.image.title=Jitsi Videobridge (jvb)
- LABEL org.opencontainers.image.description=WebRTC compatible server designed to route video streams amongst participants in a conference.
- LABEL org.opencontainers.image.url=https://jitsi.org/jitsi-videobridge/
- LABEL org.opencontainers.image.source=https://github.com/jitsi/docker-jitsi-meet
- LABEL org.opencontainers.image.documentation=https://jitsi.github.io/handbook/
- ARG JITSI_REPO=jitsi
- ARG BASE_TAG=latest
- FROM ${JITSI_REPO}/base-java:${BASE_TAG}
- RUN apt-dpkg-wrap apt-get update && \
- apt-dpkg-wrap apt-get install -y jitsi-videobridge2 jq curl iproute2 dnsutils && \
- apt-cleanup
- COPY rootfs/ /
- VOLUME /config
|