From 9d2a5d1dbbb836624b58c0d86d4f50e30fb53d9f Mon Sep 17 00:00:00 2001 From: Yohann D'ANELLO Date: Sun, 18 Oct 2020 11:46:30 +0200 Subject: [PATCH] Update exposed ports in Debian Docker image --- Dockerfile.bullseye | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.bullseye b/Dockerfile.bullseye index 1d411ff..7585b9f 100644 --- a/Dockerfile.bullseye +++ b/Dockerfile.bullseye @@ -14,6 +14,6 @@ FROM debian:bullseye-slim RUN apt-get update && apt-get install -y ffmpeg libsrt1 musl COPY --from=build_base /code/out/ghostream /app/ghostream WORKDIR /app -# 9710 (UDP) for SRT, 8080 for Web, 2112 for monitoring and 10000-10005 (UDP) for WebRTC -EXPOSE 9710/udp 8080 2112 10000-10005/udp +# 2112 for monitoring, 8023 for Telnet, 8080 for Web, 9710 for SRT, 10000-10005 (UDP) for WebRTC +EXPOSE 2112 8023 8080 9710/udp 10000-10005/udp CMD ["/app/ghostream"]