Skip to content
This repository was archived by the owner on May 22, 2023. It is now read-only.

Commit f25772c

Browse files
committed
Merge branch 'master' of github.com:zumbrunnen/docker-unifi-video
2 parents 59b0a01 + 45ef24c commit f25772c

File tree

2 files changed

+5
-11
lines changed

2 files changed

+5
-11
lines changed

Dockerfile

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM ubuntu:latest
22
33

4-
ENV UNIFI_VIDEO_VERSION 3.7.3
4+
ENV UNIFI_VIDEO_VERSION 3.8.0
55
ENV DEBIAN_FRONTEND noninteractive
66

77
ADD unifi-video.patch /unifi-video.patch
@@ -12,10 +12,10 @@ RUN apt-get update && \
1212
apt-get upgrade -y -o Dpkg::Options::="--force-confold" && \
1313
apt-get install -y wget sudo moreutils patch psmisc lsb-release && \
1414
apt-get install -y mongodb-server openjdk-8-jre-headless jsvc && \
15-
wget -q http://dl.ubnt.com/firmwares/unifi-video/${UNIFI_VIDEO_VERSION}/unifi-video_${UNIFI_VIDEO_VERSION}-Ubuntu16.04_amd64.deb && \
16-
dpkg -i unifi-video_${UNIFI_VIDEO_VERSION}-Ubuntu16.04_amd64.deb && \
15+
wget -q https://dl.ubnt.com/firmwares/ufv/v${UNIFI_VIDEO_VERSION}/unifi-video.Ubuntu16.04_amd64.v${UNIFI_VIDEO_VERSION}.deb && \
16+
dpkg -i unifi-video.Ubuntu16.04_amd64.v${UNIFI_VIDEO_VERSION}.deb && \
1717
patch -N /usr/sbin/unifi-video /unifi-video.patch && \
18-
rm /unifi-video_${UNIFI_VIDEO_VERSION}-Ubuntu16.04_amd64.deb && \
18+
rm /unifi-video.Ubuntu16.04_amd64.v${UNIFI_VIDEO_VERSION}.deb && \
1919
rm /unifi-video.patch && \
2020
chmod 755 /run.sh
2121

README.md

+1-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
# unifi-video-controller
22

3-
This docker image runs the unifi-video controller on Ubuntu. Originally intended for Unraid 6.x, it should run fine anywhere.
4-
5-
Set your local data, videos and logs directories in the `docker run` command. You can also specify a custom user and group for the daemon to run as.
6-
7-
The first run should create the file `system.properties` in your data directory. If it doesn't, create it yourself. *You* must add `is_default=true` as the first line in order to force the wizard to run.
8-
9-
Restart the docker, visit http://localhost:7080 or http://<ip.address>:7080/ to start the Unifi Video wizard.
3+
This docker image runs the UniFi Video controller. It's a fork from pducharme/UniFi-Video-Controller :+1:
104

115
## Run it
126
```

0 commit comments

Comments
 (0)