-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcompose.yaml
More file actions
27 lines (24 loc) · 1.28 KB
/
compose.yaml
File metadata and controls
27 lines (24 loc) · 1.28 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
---
services:
unifi-voucher-manager:
image: "docker.io/etiennecollin/unifi-voucher-manager:latest"
# Or use the github registry
# image: "ghcr.io/etiennecollin/unifi-voucher-manager:latest"
# To build the image yourself
# build:
# context: "./"
# target: "runtime"
# dockerfile: "./Dockerfile"
container_name: "unifi-voucher-manager"
restart: "unless-stopped"
ports:
- "3000:3000"
# SEE README FOR ENVIRONMENT VARIABLES DOCUMENTATION
environment:
UNIFI_CONTROLLER_URL: "URL to your UniFi controller with protocol (`http://` or `https://`)."
UNIFI_API_KEY: "API Key for your UniFi controller."
UNIFI_HAS_VALID_CERT: "true" # Set to false only if your UniFi controller does not use a valid SSL certificate. Typically, this should remain true when accessing the controller (UNIFI_CONTROLLER_URL) through a reverse proxy or any setup providing trusted SSL certificates (e.g., Let's Encrypt).
WIFI_SSID: "Your guest WiFi SSID" # Optional, but recommended
WIFI_PASSWORD: "Youw guest WiFi password" # Optional, but recommended
GUEST_SUBNETWORK: "Your guest subnetwork in IPv4 CIDR notation (X.X.X.X/X)" # Optional, but recommended
TIMEZONE: "Your timezone (America/Toronto)" # Optional, but recommended