Docker container for the Unifi controller application
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
GoCD Agent a53cfdf559 Auto update to version 5.4.11. 7 years ago
.updater Update updategit script. 7 years ago
Dockerfile Auto update to version 5.4.11. 7 years ago
README.md Update port information 7 years ago

README.md

UniFi Controller Dockerfile

This is a dockerised version of the Unifi Access Point (UAP) Controller.

Usage

Create a named volume to persist data:

docker volume create --name unifi-data

Pull the image for the desired version of the controller:

docker pull csmith/unifi:4.8.18

Start a container, exposing ports as needed:

docker run -d --name unifi \
              --restart always \
              -p 8443:8443 \
              -p 8080:8080 \
              -v unifi-data:/var/lib/unifi \
              csmith/unifi:4.8.18

The container exposes these ports:

  • 8080 (used by the UAPs to send messages to the controller)
  • 8443 (admin web interface, HTTPS)
  • 8843 (HTTPS captive portal redirection)
  • 8880 (HTTP captive portal redirection)