一个可行的docker部署方案
This commit is contained in:
91
docker/media/Dockerfile
Normal file
91
docker/media/Dockerfile
Normal file
@@ -0,0 +1,91 @@
|
||||
FROM ubuntu:20.04 AS build
|
||||
|
||||
#shell,rtmp,rtsp,rtsps,http,rtp
|
||||
EXPOSE 10935/tcp
|
||||
EXPOSE 5540/tcp
|
||||
EXPOSE 6080/tcp
|
||||
EXPOSE 10000/udp
|
||||
EXPOSE 10000/tcp
|
||||
EXPOSE 8000/udp
|
||||
EXPOSE 8000/tcp
|
||||
EXPOSE 9000/udp
|
||||
|
||||
# ADD sources.list /etc/apt/sources.list
|
||||
|
||||
RUN apt-get update && \
|
||||
DEBIAN_FRONTEND="noninteractive" \
|
||||
apt-get install -y --no-install-recommends \
|
||||
build-essential \
|
||||
cmake \
|
||||
git \
|
||||
curl \
|
||||
vim \
|
||||
wget \
|
||||
ca-certificates \
|
||||
tzdata \
|
||||
libssl-dev \
|
||||
gcc \
|
||||
g++ \
|
||||
gdb && \
|
||||
apt-get autoremove -y && \
|
||||
apt-get clean -y && \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
|
||||
RUN mkdir -p /opt/media
|
||||
WORKDIR /opt/media
|
||||
RUN git clone --depth 1 https://gitee.com/xia-chu/ZLMediaKit && \
|
||||
cd ZLMediaKit && git submodule update --init
|
||||
|
||||
# 3rdpart init
|
||||
WORKDIR /opt/media/ZLMediaKit/3rdpart
|
||||
RUN wget https://polaris-tian-generic.pkg.coding.net/qt/dependencies/openssl-1.1.1k.tar.gz?version=latest -O openssl-1.1.1k.tar.gz && \
|
||||
tar -xvzf openssl-1.1.1k.tar.gz && \
|
||||
cd openssl-1.1.1k && ./config shared --openssldir=/usr/local/openssl --prefix=/usr/local/openssl && \
|
||||
make && make install && \
|
||||
echo "/usr/local/lib64/" >> /etc/ld.so.conf && \
|
||||
echo "/usr/local/openssl/lib" >> /etc/ld.so.conf && \
|
||||
ldconfig && \
|
||||
ln -s /usr/local/openssl/bin/openssl /usr/local/bin/openssl
|
||||
|
||||
WORKDIR /opt/media/ZLMediaKit/3rdpart
|
||||
RUN wget https://github.com/cisco/libsrtp/archive/v2.3.0.tar.gz -O libsrtp-2.3.0.tar.gz && \
|
||||
tar xfv libsrtp-2.3.0.tar.gz && \
|
||||
mv libsrtp-2.3.0 libsrtp && \
|
||||
cd libsrtp && ./configure --enable-openssl --with-openssl-dir=/usr/local/openssl && make -j $(nproc) && make install
|
||||
|
||||
|
||||
WORKDIR /opt/media/ZLMediaKit/build
|
||||
RUN cmake .. -DENABLE_WEBRTC=true -DOPENSSL_ROOT_DIR=/usr/local/openssl -DOPENSSL_LIBRARIES=/usr/local/openssl/lib && \
|
||||
cmake --build . --target MediaServer
|
||||
COPY config.ini /opt/media/ZLMediaKit/release/linux/Debug/
|
||||
|
||||
FROM ubuntu:20.04
|
||||
|
||||
RUN apt-get update && \
|
||||
DEBIAN_FRONTEND="noninteractive" \
|
||||
apt-get install -y --no-install-recommends \
|
||||
vim \
|
||||
wget \
|
||||
ca-certificates \
|
||||
tzdata \
|
||||
curl \
|
||||
libssl-dev \
|
||||
ffmpeg \
|
||||
gcc \
|
||||
g++ \
|
||||
gdb && \
|
||||
apt-get autoremove -y && \
|
||||
apt-get clean -y && \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
|
||||
ENV TZ=Asia/Shanghai
|
||||
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime \
|
||||
&& echo $TZ > /etc/timezone && \
|
||||
mkdir -p /opt/media/bin/www
|
||||
|
||||
WORKDIR /opt/media/bin/
|
||||
COPY --from=build /opt/media/ZLMediaKit/release/linux/Debug/MediaServer /opt/media/ZLMediaKit/default.pem /opt/media/bin/
|
||||
COPY --from=build /opt/media/ZLMediaKit/release/linux/Debug/config.ini /opt/media/conf/
|
||||
COPY --from=build /opt/media/ZLMediaKit/www/ /opt/media/bin/www/
|
||||
ENV PATH /opt/media/bin:$PATH
|
||||
CMD ["./MediaServer","-s", "default.pem", "-c", "../conf/config.ini", "-l","0"]
|
||||
8
docker/media/build.sh
Executable file
8
docker/media/build.sh
Executable file
@@ -0,0 +1,8 @@
|
||||
#/bin/bash
|
||||
set -e
|
||||
|
||||
version=2.7.3
|
||||
|
||||
docker build -t polaris-media:${version} .
|
||||
docker tag polaris-media:${version} polaris-tian-docker.pkg.coding.net/qt/polaris/polaris-media:${version}
|
||||
docker tag polaris-media:${version} polaris-tian-docker.pkg.coding.net/qt/polaris/polaris-media:latest
|
||||
196
docker/media/config.ini
Normal file
196
docker/media/config.ini
Normal file
@@ -0,0 +1,196 @@
|
||||
; auto-generated by mINI class {
|
||||
|
||||
[api]
|
||||
apiDebug=1
|
||||
defaultSnap=./www/logo.png
|
||||
downloadRoot=./www;
|
||||
secret=su6TiedN2rVAmBbIDX0aa0QTiBJLBdcf
|
||||
snapRoot=./www/snap/
|
||||
|
||||
[cluster]
|
||||
origin_url=
|
||||
retry_count=3
|
||||
timeout_sec=15
|
||||
|
||||
[ffmpeg]
|
||||
bin=/usr/bin/ffmpeg
|
||||
cmd=%s -re -i %s -c:a aac -strict -2 -ar 44100 -ab 48k -c:v libx264 -f flv %s
|
||||
log=./ffmpeg/ffmpeg.log
|
||||
restart_sec=0
|
||||
snap=%s -rtsp_transport tcp -i %s -y -f mjpeg -frames:v 1 %s
|
||||
|
||||
[general]
|
||||
broadcast_player_count_changed=0
|
||||
check_nvidia_dev=1
|
||||
enableVhost=0
|
||||
enable_ffmpeg_log=0
|
||||
flowThreshold=1024
|
||||
listen_ip=::
|
||||
maxStreamWaitMS=15000
|
||||
mediaServerId=polaris
|
||||
mergeWriteMS=0
|
||||
resetWhenRePlay=1
|
||||
streamNoneReaderDelayMS=20000
|
||||
unready_frame_cache=100
|
||||
wait_add_track_ms=3000
|
||||
wait_audio_track_data_ms=1000
|
||||
wait_track_ready_ms=10000
|
||||
|
||||
[hls]
|
||||
broadcastRecordTs=0
|
||||
deleteDelaySec=10
|
||||
fastRegister=0
|
||||
fileBufSize=65536
|
||||
segDelay=0
|
||||
segDur=2
|
||||
segKeep=0
|
||||
segNum=3
|
||||
segRetain=5
|
||||
|
||||
[hook]
|
||||
alive_interval=10.0
|
||||
enable=1
|
||||
on_flow_report=
|
||||
on_http_access=
|
||||
on_play=
|
||||
on_publish=
|
||||
on_record_mp4=
|
||||
on_record_ts=
|
||||
on_rtp_server_timeout=
|
||||
on_rtsp_auth=
|
||||
on_rtsp_realm=
|
||||
on_send_rtp_stopped=
|
||||
on_server_exited=
|
||||
on_server_keepalive=
|
||||
on_server_started=
|
||||
on_shell_login=
|
||||
on_stream_changed=
|
||||
on_stream_none_reader=
|
||||
on_stream_not_found=
|
||||
retry=1
|
||||
retry_delay=3.0
|
||||
stream_changed_schemas=rtsp/rtmp/fmp4/ts/hls/hls.fmp4
|
||||
timeoutSec=30
|
||||
|
||||
[http]
|
||||
allow_cross_domains=1
|
||||
allow_ip_range=
|
||||
charSet=utf-8
|
||||
dirMenu=1
|
||||
forbidCacheSuffix=
|
||||
forwarded_ip_header=
|
||||
keepAliveSecond=30
|
||||
maxReqSize=40960
|
||||
notFound=<html><head><title>404 Not Found</title></head><body bgcolor="white"><center><h1>您访问的资源不存在!</h1></center><hr><center>ZLMediaKit(git hash:8ccb4e9/%aI,branch:master,build time:2024-11-07T10:34:19)</center></body></html>
|
||||
port=6080
|
||||
rootPath=./www
|
||||
sendBufSize=65536
|
||||
sslport=4443
|
||||
virtualPath=
|
||||
|
||||
[multicast]
|
||||
addrMax=239.255.255.255
|
||||
addrMin=239.0.0.0
|
||||
udpTTL=64
|
||||
|
||||
[protocol]
|
||||
add_mute_audio=1
|
||||
auto_close=0
|
||||
continue_push_ms=3000
|
||||
enable_audio=1
|
||||
enable_fmp4=1
|
||||
enable_hls=1
|
||||
enable_hls_fmp4=0
|
||||
enable_mp4=0
|
||||
enable_rtmp=1
|
||||
enable_rtsp=1
|
||||
enable_ts=1
|
||||
fmp4_demand=0
|
||||
hls_demand=0
|
||||
hls_save_path=./www
|
||||
modify_stamp=2
|
||||
mp4_as_player=0
|
||||
mp4_max_second=3600
|
||||
mp4_save_path=/home
|
||||
paced_sender_ms=0
|
||||
rtmp_demand=0
|
||||
rtsp_demand=0
|
||||
ts_demand=0
|
||||
|
||||
[record]
|
||||
appName=record
|
||||
enableFmp4=0
|
||||
fastStart=0
|
||||
fileBufSize=65536
|
||||
fileRepeat=0
|
||||
sampleMS=500
|
||||
|
||||
[rtc]
|
||||
datachannel_echo=0
|
||||
externIP=
|
||||
maxRtpCacheMS=5000
|
||||
maxRtpCacheSize=2048
|
||||
max_bitrate=0
|
||||
min_bitrate=0
|
||||
nackIntervalRatio=1.0
|
||||
nackMaxCount=15
|
||||
nackMaxMS=3000
|
||||
nackMaxSize=2048
|
||||
nackRtpSize=8
|
||||
port=8000
|
||||
preferredCodecA=PCMA,PCMU,opus,mpeg4-generic
|
||||
preferredCodecV=H264,H265,AV1,VP9,VP8
|
||||
rembBitRate=0
|
||||
start_bitrate=0
|
||||
tcpPort=8000
|
||||
timeoutSec=30
|
||||
|
||||
[rtmp]
|
||||
directProxy=1
|
||||
enhanced=0
|
||||
handshakeSecond=15
|
||||
keepAliveSecond=15
|
||||
port=10935
|
||||
sslport=0
|
||||
|
||||
[rtp]
|
||||
audioMtuSize=600
|
||||
h264_stap_a=1
|
||||
lowLatency=0
|
||||
rtpMaxSize=10
|
||||
videoMtuSize=1400
|
||||
|
||||
[rtp_proxy]
|
||||
dumpDir=
|
||||
gop_cache=1
|
||||
h264_pt=98
|
||||
h265_pt=99
|
||||
opus_pt=100
|
||||
port=10000
|
||||
port_range=30000-30500
|
||||
ps_pt=96
|
||||
rtp_g711_dur_ms=100
|
||||
timeoutSec=15
|
||||
udp_recv_socket_buffer=4194304
|
||||
|
||||
[rtsp]
|
||||
authBasic=0
|
||||
directProxy=1
|
||||
handshakeSecond=15
|
||||
keepAliveSecond=15
|
||||
lowLatency=0
|
||||
port=5540
|
||||
rtpTransportType=-1
|
||||
sslport=0
|
||||
|
||||
[shell]
|
||||
maxReqSize=1024
|
||||
port=0
|
||||
|
||||
[srt]
|
||||
latencyMul=4
|
||||
pktBufSize=8192
|
||||
port=9000
|
||||
timeoutSec=5
|
||||
|
||||
; } ---
|
||||
Reference in New Issue
Block a user