20 lines
415 B
YAML
20 lines
415 B
YAML
services:
|
|
unifi-controller:
|
|
image: lscr.io/linuxserver/unifi-controller:latest
|
|
container_name: unifi-controller
|
|
volumes:
|
|
# Config
|
|
- $APPDATA/unifi:/config
|
|
environment:
|
|
PUID: $PUID
|
|
PGID: $PGID
|
|
TZ: $TZ
|
|
MEM_LIMIT: 1024
|
|
MEM_STARTUP: 1024
|
|
ports:
|
|
- 8443:8443
|
|
- 3478:3478/udp
|
|
- 10001:10001/udp
|
|
- 8080:8080
|
|
restart: unless-stopped
|