forked from jacobalberty/unifi-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
92 lines (78 loc) · 3.48 KB
/
Dockerfile
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
FROM ubuntu:xenial
LABEL maintainer="Jacob Alberty <[email protected]>"
ARG DEBIAN_FRONTEND=noninteractive
ENV PKGURL=https://dl.ubnt.com/unifi/5.10.21/unifi_sysvinit_all.deb
ENV BASEDIR=/usr/lib/unifi \
DATADIR=/unifi/data \
LOGDIR=/unifi/log \
CERTDIR=/unifi/cert \
RUNDIR=/var/run/unifi \
ODATADIR=/var/lib/unifi \
OLOGDIR=/var/log/unifi \
CERTNAME=cert.pem \
CERT_PRIVATE_NAME=privkey.pem \
CERT_IS_CHAIN=false \
GOSU_VERSION=1.10 \
BIND_PRIV=true \
RUNAS_UID0=true \
UNIFI_GID=999 \
UNIFI_UID=999
# Install gosu
# https://github.com/tianon/gosu/blob/master/INSTALL.md
# This should be integrated with the main run because it duplicates a lot of the steps there
# but for now while shoehorning gosu in it is seperate
RUN set -ex \
&& fetchDeps=' \
ca-certificates \
wget \
' \
&& apt-get update \
&& apt-get install -y --no-install-recommends $fetchDeps \
&& dpkgArch="$(dpkg --print-architecture | awk -F- '{ print $NF }')" \
&& wget -O /usr/local/bin/gosu "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$dpkgArch" \
&& wget -O /usr/local/bin/gosu.asc "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$dpkgArch.asc" \
# verify the signature
&& export GNUPGHOME="$(mktemp -d)" \
&& for server in $(shuf -e ha.pool.sks-keyservers.net \
hkp://p80.pool.sks-keyservers.net:80 \
keyserver.ubuntu.com \
hkp://keyserver.ubuntu.com:80 \
pgp.mit.edu) ; do \
gpg --keyserver "$server" --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4 && break || : ; \
done \
&& gpg --batch --verify /usr/local/bin/gosu.asc /usr/local/bin/gosu \
&& rm -rf "$GNUPGHOME" /usr/local/bin/gosu.asc \
&& chmod +x /usr/local/bin/gosu \
# verify that the binary works
&& gosu nobody true \
&& apt-get purge -y --auto-remove $fetchDeps \
&& rm -rf /var/lib/apt/lists/*
RUN mkdir -p /usr/unifi \
/usr/local/unifi/init.d \
/usr/unifi/init.d
COPY docker-entrypoint.sh /usr/local/bin/
COPY docker-healthcheck.sh /usr/local/bin/
COPY docker-build.sh /usr/local/bin/
COPY functions /usr/unifi/functions
COPY import_cert /usr/unifi/init.d/
RUN chmod +x /usr/local/bin/docker-entrypoint.sh \
&& chmod +x /usr/unifi/init.d/import_cert \
&& chmod +x /usr/local/bin/docker-healthcheck.sh \
&& chmod +x /usr/local/bin/docker-build.sh
# Push installing openjdk-8-jre first, so that the unifi package doesn't pull in openjdk-7-jre as a dependency? Else uncomment and just go with openjdk-7.
RUN set -ex \
&& mkdir -p /usr/share/man/man1/ \
&& groupadd -r unifi -g $UNIFI_GID \
&& useradd --no-log-init -r -u $UNIFI_UID -g $UNIFI_GID unifi \
&& /usr/local/bin/docker-build.sh "${PKGURL}"
VOLUME ["/unifi", "${RUNDIR}"]
EXPOSE 6789/tcp 8080/tcp 8443/tcp 8880/tcp 8843/tcp 3478/udp
WORKDIR /unifi
HEALTHCHECK CMD /usr/local/bin/docker-healthcheck.sh || exit 1
# execute controller using JSVC like original debian package does
ENTRYPOINT ["/usr/local/bin/docker-entrypoint.sh"]
CMD ["unifi"]
# execute the conroller directly without using the service
#ENTRYPOINT ["/usr/bin/java", "-Xmx${JVM_MAX_HEAP_SIZE}", "-jar", "/usr/lib/unifi/lib/ace.jar"]
# See issue #12 on github: probably want to consider how JSVC handled creating multiple processes, issuing the -stop instraction, etc. Not sure if the above ace.jar class gracefully handles TERM signals.
#CMD ["start"]