Created
July 20, 2025 08:17
-
-
Save jordancrawford/d0804459933a4dc95560869ee7b9fc08 to your computer and use it in GitHub Desktop.
Powershield NetGuard Docker Image
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Dockerfile I started for the Powershield NetGuard UPS monitoring software | |
| # It works but it turned I couldn't pass my USB to serial device through to Docker properly so it was sort of pointless. | |
| FROM ubuntu:18.04 | |
| # Install dependencies | |
| RUN apt-get update && apt-get install -y wget tar | |
| # Download and extract NetGuard installer | |
| WORKDIR /opt/netguard | |
| RUN wget https://powershield.com.au/wp-content/uploads/software/NetGuard/installNetGuard_linux64_text.tar.gz \ | |
| && tar -xzvf installNetGuard_linux64_text.tar.gz \ | |
| && rm installNetGuard_linux64_text.tar.gz | |
| RUN echo "\n\n\n" | ./NetGuard_linux64_text.sh | |
| CMD ["/opt/NetGuard/NetGuard"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment