From 0adfb3ec83f26bf73b61d1c6264ac0318c0a8f4d Mon Sep 17 00:00:00 2001 From: Gemfield Date: Thu, 12 Dec 2019 20:07:21 +0800 Subject: [PATCH] Fix Docker timezone issue, and also expose RTP port --- docker/Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 3f427538..d939ab14 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,18 +1,22 @@ FROM ubuntu:16.04 -#shell,rtmp,rtsp,rtsps,http,https +#shell,rtmp,rtsp,rtsps,http,https,rtp EXPOSE 9000/tcp EXPOSE 1935/tcp EXPOSE 554/tcp EXPOSE 322/tcp EXPOSE 80/tcp EXPOSE 443/tcp +EXPOSE 10000/udp +EXPOSE 10000/tcp RUN apt-get update && apt-get install -y --no-install-recommends \ build-essential \ cmake \ git \ curl \ + vim \ ca-certificates \ + tzdata \ libssl-dev \ libmysqlclient-dev \ libx264-dev \