Docker container for the Unifi controller application
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
GoCD Agent 8d818c7ffe Auto update to version 5.7.23. il y a 6 ans
.updater Update updategit script. il y a 7 ans
Dockerfile Auto update to version 5.7.23. il y a 6 ans
README.md Update port information il y a 7 ans

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)