mirror of
https://github.com/etiennecollin/unifi-voucher-manager.git
synced 2025-11-02 13:03:17 +00:00
21 lines
708 B
YAML
21 lines
708 B
YAML
---
|
|
services:
|
|
unifi-voucher-manager:
|
|
image: "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"
|
|
# To put the environment variables in a `.env` file, uncomment the env_file
|
|
# section and comment the environment section.
|
|
# env_file:
|
|
# - ".env"
|
|
environment:
|
|
UNIFI_CONTROLLER_URL: "URL to your Unifi controller with protocol. Example: 'https://unifi.example.com:8443' or 'http://192.168.0.1'"
|
|
UNIFI_API_KEY: "API Key for your Unifi controller"
|