From 28762cef10a5c1f8d57dc8e413206006dd00bbfc Mon Sep 17 00:00:00 2001 From: jonas Date: Wed, 7 Oct 2020 19:51:45 +0200 Subject: [PATCH] Declare forwarding of both TCP and UDP in EXPOSE statement To go in line with the README I think it would be appropriate to inform directly in the Dockerfile that port 51413 expects both TCP and UDP traffic to be forwarded. --- Dockerfile | 2 +- Dockerfile.aarch64 | 3 +-- Dockerfile.armhf | 3 +-- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1c4ec18..d745e70 100644 --- a/Dockerfile +++ b/Dockerfile @@ -63,5 +63,5 @@ RUN \ COPY root/ / # ports and volumes -EXPOSE 9091 51413 +EXPOSE 9091 51413/tcp 51413/udp VOLUME /config /downloads /watch diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 3fb3939..ff303c4 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -62,6 +62,5 @@ RUN \ COPY root/ / # ports and volumes -EXPOSE 9091 51413 +EXPOSE 9091 51413/tcp 51413/udp VOLUME /config /downloads /watch - diff --git a/Dockerfile.armhf b/Dockerfile.armhf index f4b3a38..b55149a 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -62,6 +62,5 @@ RUN \ COPY root/ / # ports and volumes -EXPOSE 9091 51413 +EXPOSE 9091 51413/tcp 51413/udp VOLUME /config /downloads /watch -