1
0
mirror of https://gitlab.crans.org/nounous/ghostream.git synced 2025-06-27 04:18:45 +02:00

SRT port must be exposed as UDP port

This commit is contained in:
Yohann D'ANELLO
2020-09-29 15:31:08 +02:00
parent 82969360a4
commit 903d56cd08
3 changed files with 8 additions and 8 deletions

View File

@ -15,5 +15,5 @@ RUN apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing libs
COPY --from=build_base /code/out/ghostream /app/ghostream
WORKDIR /app
# 9710 for SRT, 8080 for Web, 2112 for monitoring and 10000-10005 (UDP) for WebRTC
EXPOSE 9710 8080 2112 10000-10005/udp
EXPOSE 9710/udp 8080 2112 10000-10005/udp
CMD ["/app/ghostream"]