From 50873e6fa704e43d3ee9f31566b5dbadb9cafb5f Mon Sep 17 00:00:00 2001 From: grrrrrrrrrr Date: Mon, 16 Sep 2019 14:40:37 -0400 Subject: [PATCH] Add device discovery port to expose (#477) I'm not sure if this was recently changed but the unifi controller uses port 10001 over UDP for device discovery. Adding this got my installation to work. Thanks for this! --- unifi/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/unifi/Dockerfile b/unifi/Dockerfile index 559251c..bda4c21 100644 --- a/unifi/Dockerfile +++ b/unifi/Dockerfile @@ -108,8 +108,9 @@ WORKDIR /config # 8843 - guest portal (https) # 8880 - guest portal (http) # 6789 - throughput / mobile speedtest (tcp) +# 10001 - device discovery (udp) # ref https://help.ubnt.com/hc/en-us/articles/218506997-UniFi-Ports-Used -EXPOSE 3478/udp 8080 8081 8443 8843 8880 6789 +EXPOSE 3478/udp 8080 8081 8443 8843 8880 6789 10001/udp COPY entrypoint.sh /usr/local/bin/entrypoint.sh