This repository is a dockerized version of the taiko-node-dashboard.
If you are already running the node and want to only spin up the taiko node dashboard follow these steps:
git clone https://github.com/dojonode/taiko-node-dashboard-docker
cd taiko-node-dashboard-docker
docker compose up
- visit http://localhost:7744 or http://dashboard.dojonode.xyz to access the dashboard
- click on the 📡 button and change localhost to the IP address of the node's machine
Provers and proposers
- Fill in the ethereum address(es) used for the node in the settings (📡 button) to view all the metrics
Append the following code snippet to the docker-compose.yml
of the taiko node to combine the two applications.
taiko-node-dashboard:
image: wolfderechter/taiko-node-dashboard:latest
ports:
- "7744:80"
taiko-node-systeminfo:
image: wolfderechter/dojonode-systeminformation:latest
ports:
- "3009:3009"