initial commit

This commit is contained in:
2018-11-08 21:56:10 +01:00
commit e3f3e39a39
7 changed files with 304 additions and 0 deletions

17
upsmon/Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
ARG BUILD_FROM
FROM $BUILD_FROM
ENV LANG C.UTF-8
RUN apk add --no-cache jq
RUN apk add nut --update-cache --repository http://nl.alpinelinux.org/alpine/edge/testing/
RUN mkdir /var/run/nut
RUN chown root:nut /var/run/nut
RUN chmod 770 /var/run/nut
# Copy data for add-on
COPY run.sh /
RUN chmod a+x /run.sh
CMD [ "/run.sh" ]