Skip to content

Commit

Permalink
Merge pull request #36 from ladamalina/feature/v1.2.3
Browse files Browse the repository at this point in the history
v1.2.3
  • Loading branch information
ladamalina authored Jun 22, 2024
2 parents 732b219 + eb0c8c2 commit 770cf41
Show file tree
Hide file tree
Showing 3 changed files with 65 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

## Supported tags and respective `Dockerfile` links

* [`latest`](https://github.com/ladamalina/janus-gateway/blob/master/v1.2.2-ubuntu-24.04/Dockerfile)
* [`v1.2.2`](https://github.com/ladamalina/janus-gateway/blob/master/v1.2.2-ubuntu-24.04/Dockerfile), [`v1.2.2-ubuntu-24.04`](https://github.com/ladamalina/janus-gateway/blob/master/v1.2.2-ubuntu-24.04/Dockerfile), [`v1.2.2-bookworm-slim`](https://github.com/ladamalina/janus-gateway/blob/master/v1.2.2-bookworm-slim/Dockerfile), [`v1.2.2-bookworm`](https://github.com/ladamalina/janus-gateway/blob/master/v1.2.2-bookworm/Dockerfile), [`v1.2.1-bookworm`](https://github.com/ladamalina/janus-gateway/blob/master/v1.2.1-bookworm/Dockerfile), [`v1.2.1-bullseye`](https://github.com/ladamalina/janus-gateway/blob/master/v1.2.1-bullseye/Dockerfile), [`v1.2.0-bullseye`](https://github.com/ladamalina/janus-gateway/blob/master/v1.2.0-bullseye/Dockerfile)
* [`latest`](https://github.com/ladamalina/janus-gateway/blob/master/v1.2.3/Dockerfile)
* [`v1.2.3`](https://github.com/ladamalina/janus-gateway/blob/master/v1.2.3/Dockerfile), [`v1.2.2`](https://github.com/ladamalina/janus-gateway/blob/master/v1.2.2-ubuntu-24.04/Dockerfile), [`v1.2.2-ubuntu-24.04`](https://github.com/ladamalina/janus-gateway/blob/master/v1.2.2-ubuntu-24.04/Dockerfile), [`v1.2.2-bookworm-slim`](https://github.com/ladamalina/janus-gateway/blob/master/v1.2.2-bookworm-slim/Dockerfile), [`v1.2.2-bookworm`](https://github.com/ladamalina/janus-gateway/blob/master/v1.2.2-bookworm/Dockerfile), [`v1.2.1-bookworm`](https://github.com/ladamalina/janus-gateway/blob/master/v1.2.1-bookworm/Dockerfile), [`v1.2.1-bullseye`](https://github.com/ladamalina/janus-gateway/blob/master/v1.2.1-bullseye/Dockerfile), [`v1.2.0-bullseye`](https://github.com/ladamalina/janus-gateway/blob/master/v1.2.0-bullseye/Dockerfile)
* [`v1.1.4-bullseye`](https://github.com/ladamalina/janus-gateway/blob/master/v1.1.4-bullseye/Dockerfile), [`v1.1.3-bullseye`](https://github.com/ladamalina/janus-gateway/blob/master/v1.1.3-bullseye/Dockerfile), [`v1.1.2-bullseye`](https://github.com/ladamalina/janus-gateway/blob/master/v1.1.2-bullseye/Dockerfile), [`v1.1.1-bullseye`](https://github.com/ladamalina/janus-gateway/blob/master/v1.1.1-bullseye/Dockerfile), [`v1.1.0-bullseye`](https://github.com/ladamalina/janus-gateway/blob/master/v1.1.0-bullseye/Dockerfile)
* [`v1.0.4-bullseye`](https://github.com/ladamalina/janus-gateway/blob/master/v1.0.4-bullseye/Dockerfile), [`v1.0.3-bullseye`](https://github.com/ladamalina/janus-gateway/blob/master/v1.0.3-bullseye/Dockerfile), [`v1.0.2-bullseye`](https://github.com/ladamalina/janus-gateway/blob/master/v1.0.2-bullseye/Dockerfile)
* [`v0.14.3`](https://github.com/ladamalina/janus-gateway/blob/master/v0.14.3/Dockerfile), [`v0.14.2-bookworm`](https://github.com/ladamalina/janus-gateway/blob/master/v0.14.2-bookworm/Dockerfile), [`v0.14.1-bookworm`](https://github.com/ladamalina/janus-gateway/blob/master/v0.14.1-bookworm/Dockerfile), [`v0.14.1-bullseye`](https://github.com/ladamalina/janus-gateway/blob/master/v0.14.1-bullseye/Dockerfile), [`v0.14.0-bullseye`](https://github.com/ladamalina/janus-gateway/blob/master/v0.14.0-bullseye/Dockerfile)
Expand Down
62 changes: 62 additions & 0 deletions v1.2.3/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
FROM ubuntu:24.04

LABEL maintainer="Nadezhda Ryabtsova <nadezhdaryabtsova@gmail.com>"
LABEL description="Provides an image with Janus Gateway"

RUN echo "MIRRORSITE=http://archive.ubuntu.com/ubuntu" >> /etc/pbuilderrc && \
apt-get update && \
apt-get install -y --no-install-recommends \
git \
build-essential \
autoconf \
automake \
autotools-dev \
dh-make \
debhelper \
devscripts \
fakeroot \
xutils \
lintian \
pbuilder \
libconfig-dev \
libmicrohttpd-dev \
libjansson-dev \
libnice-dev \
libssl-dev \
libsrtp2-dev \
libsofia-sip-ua-dev \
libglib2.0-dev \
libopus-dev \
libogg-dev \
pkg-config \
gengetopt \
libtool \
automake \
cmake \
libmicrohttpd-dev \
libjansson-dev \
libcurl4-openssl-dev \
libglib2.0-dev \
libssl-dev \
libopus-dev \
libavutil-dev \
libavcodec-dev \
libavformat-dev \
libwebsockets-dev \
liblua5.3-dev \
libsrtp2-dev && \
rm -rf /var/lib/apt/lists/*

RUN mkdir -p /usr/src/janus /var/janus/janus/log /var/janus/janus/data && \
cd /usr/src/janus && \
wget -c https://github.com/meetecho/janus-gateway/archive/v1.2.3.tar.gz && \
tar -xzf v1.2.3.tar.gz && \
cd janus-gateway-1.2.3 && \
sh autogen.sh && \
./configure --prefix=/var/janus/janus --enable-post-processing --disable-rabbitmq --disable-data-channels --disable-aes-gcm && \
make && make install && make configs && \
rm -rf /usr/src/janus

EXPOSE 8088/tcp 8188/tcp 8188/udp

CMD ["/var/janus/janus/bin/janus", "--nat-1-1=${DOCKER_IP}"]

0 comments on commit 770cf41

Please sign in to comment.