1
0
Fork 0
nut-docker/Dockerfile

16 lines
212 B
Docker
Raw Normal View History

2021-01-02 16:54:47 +01:00
FROM debian
ENV NAME myups
ENV DRIVER usbhid-ups
ENV PORT auto
ENV POLLFREQ 5
ENV DESC UPS
2021-01-08 10:41:33 +01:00
RUN apt-get update
RUN apt-get -y install nut-server
2021-01-02 16:54:47 +01:00
COPY entrypoint.sh /
ENTRYPOINT ["/entrypoint.sh"]
EXPOSE 3493