diff --git a/Dockerfile b/Dockerfile index 6f0e5fb..c52587a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,6 +12,6 @@ FROM alpine:3.12 RUN apk add --no-cache -X https://dl-cdn.alpinelinux.org/alpine/edge/community/ ffmpeg libsrt COPY --from=build_base /code/out/ghostream /app/ghostream WORKDIR /app -# 9710 for SRT, 8080 for Web, 2112 for monitoring, 10000-10005 (UDP) for WebRTC and 23 for telnet -EXPOSE 9710/udp 8080 2112 10000-10005/udp 8023 +# 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"]