From ee14191b8854a2a0e3631c4723b283a2bb0fe01b Mon Sep 17 00:00:00 2001 From: Michael Macnair Date: Sun, 4 Feb 2018 01:33:46 +0000 Subject: [PATCH] Unifi port updates (#335) * Unifi: Expose STUN port and document ports * unifi: update to latest controller version --- unifi/Dockerfile | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/unifi/Dockerfile b/unifi/Dockerfile index 144c7f9..d2e73e1 100644 --- a/unifi/Dockerfile +++ b/unifi/Dockerfile @@ -54,7 +54,7 @@ RUN apt-get update && apt-get install -y \ # unifi version # From: https://www.ubnt.com/download/unifi/ -ENV UNIFI_VERSION "5.6.22" +ENV UNIFI_VERSION "5.6.29" # install unifi RUN buildDeps=' \ @@ -72,7 +72,14 @@ RUN buildDeps=' \ && echo "Build complete." WORKDIR /config -EXPOSE 8080 8081 8443 8843 8880 + +# 3478 - STUN +# 8080 - device inform (http) +# 8443 - web management (https) +# 8843 - guest portal (https) +# 8880 - guest portal (http) +# ref https://help.ubnt.com/hc/en-us/articles/218506997-UniFi-Ports-Used +EXPOSE 3478/udp 8080 8081 8443 8843 8880 COPY entrypoint.sh /usr/local/bin/entrypoint.sh