add unifi

Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
This commit is contained in:
Jess Frazelle 2017-11-30 10:50:46 -05:00
parent 62e20cd24b
commit 27cd1d0e36
No known key found for this signature in database
GPG Key ID: 18F3685C0022BFF3

50
unifi/Dockerfile Normal file
View File

@ -0,0 +1,50 @@
FROM ubuntu:16.04
# environment settings
ENV DEBIAN_FRONTEND="noninteractive"
# install deps
RUN apt-get update && apt-get install -y \
ca-certificates \
dirmngr \
gnupg \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
# add mongo repo
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 0C49F3730359A14518585931BC711F9BA15703C6 \
&& echo "deb [ arch=amd64,arm64 ] http://repo.mongodb.org/apt/ubuntu xenial/mongodb-org/3.4 multiverse" >> /etc/apt/sources.list.d/mongo.list
# install packages
RUN apt-get update && apt-get install -y \
binutils \
jsvc \
mongodb-org-server \
openjdk-8-jre-headless \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
# unifi version
# From: https://www.ubnt.com/download/unifi/
ENV UNIFI_VERSION "5.6.22"
# install unifi
RUN buildDeps=' \
curl \
' \
set -x \
&& apt-get update && apt-get install -y \
$buildDeps \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/* \
&& curl -o /tmp/unifi.deb -L "http://dl.ubnt.com/unifi/${UNIFI_VERSION}/unifi_sysvinit_all.deb" \
&& dpkg -i /tmp/unifi.deb \
&& rm -rf /tmp/unifi.deb \
&& apt-get purge -y $buildDeps \
&& echo "Build complete."
WORKDIR /config
EXPOSE 8080 8081 8443 8843 8880
CMD ["java", "-Xmx1024M", "-jar", "/usr/lib/unifi/lib/ace.jar", "start"]