mirror of
https://github.com/Nardo86/nut-docker.git
synced 2025-06-05 21:49:27 +02:00
16 lines
212 B
Docker
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
|