aboutsummaryrefslogtreecommitdiff
path: root/unifi/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'unifi/Dockerfile')
-rw-r--r--unifi/Dockerfile10
1 files changed, 10 insertions, 0 deletions
diff --git a/unifi/Dockerfile b/unifi/Dockerfile
new file mode 100644
index 0000000..1fb6aa2
--- /dev/null
+++ b/unifi/Dockerfile
@@ -0,0 +1,10 @@
1FROM alpine:edge
2LABEL maintainer="Mike Crute <mike@crute.us>"
3
4RUN set -euxo pipefail; \
5 wget -O /etc/apk/keys/mcrute-5a3eecec.rsa.pub https://packages.crute.me/mcrute-5a3eecec.rsa.pub; \
6 echo "https://packages.crute.me/alpine/edge/main" >> /etc/apk/repositories; \
7 apk --no-cache add unifi-controller;
8
9STOPSIGNAL SIGTERM
10ENTRYPOINT [ "/usr/bin/simplevisor", "-config=/simplevisor.json" ]