From 48b675146f27a997a897cc60b33340389232829a Mon Sep 17 00:00:00 2001 From: tonytonyistony <53504611+tonytonyistony@users.noreply.github.com> Date: Thu, 1 Sep 2022 21:47:24 -0700 Subject: [PATCH] Expose TCP:1025 and TCP:1143 Due to unraid limitations, if you set the network to br0 which bypasses the unraid reverse proxy, you cant change ports on the docker container. https://www.reddit.com/r/unRAID/comments/i98wl2/br0_port_80/ --- build/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build/Dockerfile b/build/Dockerfile index ae1c6f7..49d37cd 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -13,6 +13,8 @@ LABEL maintainer="Xiaonan Shen " EXPOSE 25/tcp EXPOSE 143/tcp +EXPOSE 1025/tcp +EXPOSE 1143/tcp # Install dependencies and protonmail bridge RUN apt-get update \