mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-14 18:12:47 +00:00
25 lines
1.5 KiB
Bash
25 lines
1.5 KiB
Bash
# The [Unifi-controller](https://www.ubnt.com/enterprise/#unifi) software is a
|
|
# powerful, enterprise wireless software engine ideal for high-density client
|
|
# deployments requiring low latency and high uptime performance.
|
|
|
|
source ./.env
|
|
docker run -d \
|
|
--name=unifi-controller \
|
|
-e PUID=${PUID:-1024} `# for UserID` \
|
|
-e PGID=${PGID:-100} `# for GroupID` \
|
|
-e TZ=${TZ:-Europe/Amsterdam} `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \
|
|
-e MEM_LIMIT=1024 `# optional` `# Optionally change the Java memory limit (in Megabytes). Set to `default` to reset to default` \
|
|
-e MEM_STARTUP=1024 `# optional` `# Optionally change the Java initial/minimum memory (in Megabytes). Set to `default` to reset to default` \
|
|
-p 8443:8443 `# Unifi web admin port` \
|
|
-p 3478:3478/udp `# Unifi STUN port` \
|
|
-p 10001:10001/udp `# Required for AP discovery` \
|
|
-p 8080:8080 `# Required for device communication` \
|
|
-p 1900:1900/udp `# optional` `# Required for `Make controller discoverable on L2 network` option` \
|
|
-p 8843:8843 `# optional` `# Unifi guest portal HTTPS redirect port` \
|
|
-p 8880:8880 `# optional` `# Unifi guest portal HTTP redirect port` \
|
|
-p 6789:6789 `# optional` `# For mobile throughput test` \
|
|
-p 5514:5514/udp `# optional` `# Remote syslog port` \
|
|
-v ${BASEDIR:-/volume1/docker}/unifi-controller/config:/config `# All Unifi data stored here` \
|
|
--restart unless-stopped \
|
|
ghcr.io/linuxserver/unifi-controller
|