https://github.com/nunofgs/docker-unifi-video-controller
🐳 📷 A unifi video controller Docker container
https://github.com/nunofgs/docker-unifi-video-controller
container docker nvr unifi-video unifi-video-controller
Last synced: 8 months ago
JSON representation
🐳 📷 A unifi video controller Docker container
- Host: GitHub
- URL: https://github.com/nunofgs/docker-unifi-video-controller
- Owner: nunofgs
- Created: 2017-11-08T01:02:30.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2022-02-14T15:47:16.000Z (over 3 years ago)
- Last Synced: 2025-01-05T02:29:04.327Z (10 months ago)
- Topics: container, docker, nvr, unifi-video, unifi-video-controller
- Language: Shell
- Homepage:
- Size: 2.93 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Unifi Video Controller Docker container
This container will run the Unifi Video Controller software (NVR) and optionally configure custom letsencrypt certificates.
| Environment variables | Description |
|-----------------------|---------------------------------------------------------------|
| $CERTIFICATE | The certificate name, stored in the `/etc/letsencrypt` folder || Mount points | Description |
|----------------------|--------------------------------------------------------------|
| /etc/letsencrypt | The volume where the let's encrypt certificates are stored |
| /var/lib/unifi-video | The NVR data folder, which includes the database, logs, etc. |# Usage
```shell
$ docker run \
-p 1935:1935 \
-p 6666:6666 \
-p 7080:7080 \
-p 7443:7443 \
-p 7445:7445 \
-p 7446:7446 \
-p 7447:7447 \
-v /opt/unifi/video:/var/lib/unifi-video \
-v /opt/letsencrypt:/etc/letsencrypt:ro \
nunofgs/unifi-video-controller
```# Thanks
A special thank you to [supafyn/unifi-video-controller](github.com/supafyn/unifi-video-controller) which this container is based on.