aboutsummaryrefslogtreecommitdiff
path: root/unifi/Dockerfile
blob: 1fb6aa228a543e91c54ecc0a632d1f105bbd21a0 (plain)
1
2
3
4
5
6
7
8
9
10
FROM alpine:edge
LABEL maintainer="Mike Crute <mike@crute.us>"

RUN set -euxo pipefail; \
    wget -O /etc/apk/keys/mcrute-5a3eecec.rsa.pub https://packages.crute.me/mcrute-5a3eecec.rsa.pub; \
    echo "https://packages.crute.me/alpine/edge/main" >> /etc/apk/repositories; \
    apk --no-cache add unifi-controller;

STOPSIGNAL SIGTERM
ENTRYPOINT [ "/usr/bin/simplevisor", "-config=/simplevisor.json" ]