This Docker image provides a minimal and ready-to-use dashboard designed for use with ZAP Lightning Nodes. It’s based on the work of https://github.com/pratik227/zap_dashboard and runs out of the box – no additional setup required.
Quick Start
Make sure Docker is installed, then simply run:
docker pull robinvonmises/zap_dashboard
docker run -d -p 4173:4173 -p 5173:5173 –name zap_dashboard robinvonmises/zap_dashboard
Once running, the dashboard will be available at:
Frontend: http://localhost:5173
4173 is optional, currently this is running as dev branch
Features • Fully built and production-ready dashboard • No dependencies or additional configuration needed • Lightweight and minimal resource usage
Notes • Adjust ports if necessary to fit your local environment • The container runs in detached mode (-d). To view logs: docker logs zap_dashboard
Docker Compose
version: '3.8'
services:
zap_dashboard:
image: robinvonmises/zap_dashboard
container_name: zap_dashboard
ports:
- "4173:4173" # optional as long as dev-branch is used
- "5173:5173" # dev-port
restart: unless-stopped
run with
docker compose up -d
Credits
Based on the work of https://github.com/pratik227/zap_dashboard. Docker image maintained by @robinvonmises
Content type
Image
Digest
sha256:81aa938f4…
Size
159.3 MB
Last updated
about 1 year ago
docker pull robinvonmises/zap_dashboard