mirror of
https://github.com/Nardo86/nut-docker.git
synced 2025-02-15 19:20:40 +01:00
15 lines
210 B
Docker
15 lines
210 B
Docker
FROM debian
|
|
|
|
ENV NAME myups
|
|
ENV DRIVER usbhid-ups
|
|
ENV PORT auto
|
|
ENV POLLFREQ 5
|
|
ENV DESC UPS
|
|
|
|
RUN apt-get update && apt-get -y install nut-server
|
|
|
|
COPY entrypoint.sh /
|
|
ENTRYPOINT ["/entrypoint.sh"]
|
|
|
|
EXPOSE 3493
|