vod-rtmp/rtmp/Dockerfile

74 lines
2.8 KiB
Docker
Raw Normal View History

2021-10-10 20:31:32 -04:00
FROM buildpack-deps:stretch
2021-10-10 11:40:13 -04:00
2021-10-10 20:31:32 -04:00
# Versions of modules to use
ENV NGINX_VERSION nginx-1.18.0
ENV NGINX_RTMP_MODULE_VERSION 1.2.1
ENV NGINX_HTTP_FLV_MODULE_VERSION 1.2.9
# Install dependencies
RUN apt-get update && \
apt-get install -y ca-certificates openssl libssl-dev && \
2021-10-11 16:53:40 -04:00
apt-get install -y ffmpeg && \
2021-10-10 20:31:32 -04:00
rm -rf /var/lib/apt/lists/*
# Download and decompress Nginx
RUN mkdir -p /tmp/build/nginx && \
cd /tmp/build/nginx && \
wget -O ${NGINX_VERSION}.tar.gz https://nginx.org/download/${NGINX_VERSION}.tar.gz && \
tar -zxf ${NGINX_VERSION}.tar.gz
# Download and decompress RTMP module
RUN mkdir -p /tmp/build/nginx-rtmp-module && \
cd /tmp/build/nginx-rtmp-module && \
wget -O nginx-rtmp-module-${NGINX_RTMP_MODULE_VERSION}.tar.gz https://github.com/arut/nginx-rtmp-module/archive/v${NGINX_RTMP_MODULE_VERSION}.tar.gz && \
tar -zxf nginx-rtmp-module-${NGINX_RTMP_MODULE_VERSION}.tar.gz && \
cd nginx-rtmp-module-${NGINX_RTMP_MODULE_VERSION}
# Download and decompress HTTP FLV module
RUN mkdir -p /tmp/build/nginx-http-flv-module && \
cd /tmp/build/nginx-http-flv-module && \
wget -O nginx-http-flv-module-${NGINX_HTTP_FLV_MODULE_VERSION}.tar.gz https://github.com/winshining/nginx-http-flv-module/archive/v${NGINX_HTTP_FLV_MODULE_VERSION}.tar.gz && \
tar -zxf nginx-http-flv-module-${NGINX_HTTP_FLV_MODULE_VERSION}.tar.gz && \
cd nginx-http-flv-module-${NGINX_HTTP_FLV_MODULE_VERSION}
# Build and install Nginx
# The default puts everything under /usr/local/nginx, so it's needed to change
# it explicitly. Not just for order but to have it in the PATH
RUN cd /tmp/build/nginx/${NGINX_VERSION} && \
./configure \
--sbin-path=/usr/local/sbin/nginx \
--conf-path=/etc/nginx/nginx.conf \
--error-log-path=/var/log/nginx/error.log \
--pid-path=/var/run/nginx/nginx.pid \
--lock-path=/var/lock/nginx/nginx.lock \
--http-log-path=/var/log/nginx/access.log \
--http-client-body-temp-path=/tmp/nginx-client-body \
--with-http_ssl_module \
--with-threads \
--with-ipv6 \
2021-10-11 14:08:40 -04:00
#--add-module=/tmp/build/nginx-http-flv-module/nginx-http-flv-module-${NGINX_HTTP_FLV_MODULE_VERSION} && \
--add-module=/tmp/build/nginx-rtmp-module/nginx-rtmp-module-${NGINX_RTMP_MODULE_VERSION} && \
2021-10-10 20:31:32 -04:00
make -j $(getconf _NPROCESSORS_ONLN) && \
make install && \
mkdir /var/lock/nginx && \
rm -rf /tmp/build
# Forward logs to Docker
RUN ln -sf /dev/stdout /var/log/nginx/access.log && \
ln -sf /dev/stderr /var/log/nginx/error.log
# Set up config file
2021-10-10 11:40:13 -04:00
COPY nginx.conf /etc/nginx/nginx.conf
2021-10-10 18:27:33 -04:00
COPY mime.types /etc/nginx/mime.types
2021-10-10 20:31:32 -04:00
# Copy fallback data
2021-10-10 21:32:32 -04:00
COPY network.m3u8 /www/fallback/
COPY network0.ts /www/fallback/
COPY network1.ts /www/fallback/
2021-10-10 18:44:31 -04:00
2021-10-10 20:31:32 -04:00
EXPOSE 1935
2021-10-10 18:44:31 -04:00
EXPOSE 8080
2021-10-10 20:31:32 -04:00
EXPOSE 18080
CMD ["nginx", "-g", "daemon off;"]