1
0
mirror of https://github.com/Nardo86/nut-docker.git synced 2025-06-05 21:49:27 +02:00
Files
nut-docker/Dockerfile
Eros Nardi 2f78c78004 0
2021-01-08 10:41:33 +01:00

16 lines
212 B
Docker

FROM debian
ENV NAME myups
ENV DRIVER usbhid-ups
ENV PORT auto
ENV POLLFREQ 5
ENV DESC UPS
RUN apt-get update
RUN apt-get -y install nut-server
COPY entrypoint.sh /
ENTRYPOINT ["/entrypoint.sh"]
EXPOSE 3493