Docker container for the Unifi controller application
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
GoCD Agent 8d818c7ffe Auto update to version 5.7.23. 6年前
.updater Update updategit script. 7年前
Dockerfile Auto update to version 5.7.23. 6年前
README.md Update port information 7年前

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)