Created
September 1, 2018 14:31
-
-
Save HelloThisIsFlo/3ac8c9c97682fecf5911ae1ff03976bc to your computer and use it in GitHub Desktop.
Docker Compose file for the Unifi Controller
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '2.3' | |
services: | |
unifi: | |
image: jacobalberty/unifi:5.6.39 | |
restart: always | |
volumes: | |
- './config/lib:/var/lib/unifi' | |
- './config/log:/var/log/unifi' | |
- './config/run:/var/run/unifi' | |
ports: | |
- '3478:3478/udp' | |
- '10001:10001/udp' | |
- '6789:6789/tcp' | |
- '8080:8080/tcp' | |
- '8880:8880/tcp' | |
- '8443:8443/tcp' | |
- '8843:8843/tcp' | |
environment: | |
- TZ=Europe/Paris |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment