This repository packages LiveboxMonitor (by p-dor) into a container so the desktop app can run headlessly on servers and NAS devices.
LiveboxMonitor is a monitoring and management tool for Orange Livebox routers, that you can actually use compared to the default Orange interface.
This image uses linuxserver's KasmVNC base image to provide a browser-accessible desktop (VNC/Web) that run on docker.
To use this container, you can use the following docker-compose configuration as a starting point:
Warning
Change the default username and password in the compose.yaml file before deploying the container! Especially if you expose the ports to the internet!
services:
liveboxmonitor:
image: louvandtech/liveboxmonitor:latest
container_name: liveboxmonitor
environment:
CUSTOM_USER: "user" # CHANGE ME
PASSWORD: "pass" # CHANGE ME
volumes:
- liveboxmonitor-data:/config
ports:
- "3000:3000" # HTTP
- "3001:3001" # HTTPS
restart: unless-stopped
volumes:
liveboxmonitor-data:This image is available on Docker Hub and GitHub Container Registry :
- Docker Hub:
louvandtech/liveboxmonitor:latest - GitHub Container Registry:
ghcr.io/louvandtech/liveboxmonitor:latest