-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
56 lines (49 loc) · 1.32 KB
/
compose.yaml
File metadata and controls
56 lines (49 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: unifi
x-daemonless:
title: "UniFi Network"
icon: ":material-access-point-network:"
category: "Utilities"
description: "Ubiquiti UniFi Network Application for managing UniFi access points, switches, and gateways."
upstream_url: "https://ui.com/"
web_url: "https://ui.com/"
freshports_url: "https://www.freshports.org/net-mgmt/unifi10/"
user: "bsd"
mlock: true
upstream_binary: true
appjail: true
docs:
env:
PUID: "User ID for the application process"
PGID: "Group ID for the application process"
TZ: "Timezone for the container"
volumes:
/config: "Configuration and database directory"
ports:
8443: "Web UI (HTTPS)"
8080: "Device inform"
8843: "Guest portal HTTPS"
8880: "Guest portal HTTP"
6789: "Mobile throughput test"
3478: "STUN (UDP)"
10001: "Device discovery (UDP)"
services:
unifi:
image: ghcr.io/daemonless/unifi:latest
container_name: unifi
restart: unless-stopped
annotations:
org.freebsd.jail.allow.mlock: "true"
environment:
- PUID=1000
- PGID=1000
- TZ=UTC
volumes:
- /path/to/containers/unifi:/config
ports:
- "8443:8443"
- "8080:8080"
- "8843:8843"
- "8880:8880"
- "6789:6789"
- "3478:3478/udp"
- "10001:10001/udp"