I see you're using host networking in your docker-compose file. Can you update the README.md to include some text about opening the necessary ports on your device's firewall? It may not be obvious to new users that these ports need to be opened. For example, maybe add a step 5 here.
(Optional) Edit docker-compose.yml to point to a different tag if you don't want latest.
sudo docker-compose up -d
(Optional) If you're running a firewall (e.g., ufw, iptables, etc...) on your Docker host, open the following ports: 8080/tcp 8443/tcp 8843/tcp 8880/tcp 3478/udp
In contrast, I have been using your container (awesome, btw!) with the default bridge networking, so I have to specify the ports I want to expose, but Docker takes care of all the firewall stuff for me.
I see you're using host networking in your docker-compose file. Can you update the README.md to include some text about opening the necessary ports on your device's firewall? It may not be obvious to new users that these ports need to be opened. For example, maybe add a step 5 here.
mkdir unifi && cd unifi
curl -O https://raw.githubusercontent.com/ryansch/docker-unifi-rpi/master/docker-compose.yml
docker-compose.yml
to point to a different tag if you don't wantlatest
.sudo docker-compose up -d
In contrast, I have been using your container (awesome, btw!) with the default bridge networking, so I have to specify the ports I want to expose, but Docker takes care of all the firewall stuff for me.