David Claeys 1521ccad1d
All checks were successful
Build docker container / build (push) Successful in 2m6s
update actions
2025-02-12 15:19:23 +01:00
2025-02-12 15:19:23 +01:00
2025-02-12 15:19:23 +01:00
2024-08-09 14:47:56 +02:00
2024-12-06 12:24:39 +01:00
2024-12-06 12:22:57 +01:00

docker-webNUT

This repository is a fork of https://github.com/teknologist/docker-webnut.
It is based on it's content but this docker image includes updated dependencies.

webNUT (UPS network monitoring web ui) dockerized.

More infos on webNUT: https://github.com/rshipp/webNUT

Environment Variables

Variable Description Default
UPS_HOST The NUT server host IP 127.0.0.1
UPS_PORT The NUT server port 3493
UPS_USER The NUT server username monuser
UPS_PASSWORD The NUT server password secret

Compose file

version: '3.3'
services:
  nut:
    # image: git.claeyscloud.com/david/webnut:latest
    image: ghcr.io/davidclaeysquinones/webnut
    environment:
       # adjust these variable as needed
       - UPS_HOST=10.11.12.13 
       - UPS_PORT=3493
       - UPS_USER="monuser"
       - UPS_PASSWORD="secret"
    restart: unless-stopped
    security_opt:
       - no-new-privileges:true
    ports:
       - 6543:6543
Description
Languages
Dockerfile 50%
Shell 50%