/taiko-node-dashboard-docker

The Taiko node dashboard is aimed to provide quick and digestible insights into your Taiko node.

MIT LicenseMIT

Taiko node dashboard using docker

Docker Pulls

This repository is a dockerized version of the taiko-node-dashboard.

Cover_Image

Dashboard only

If you are already running the node and want to only spin up the taiko node dashboard follow these steps:

  1. git clone https://github.com/dojonode/taiko-node-dashboard-docker
  2. cd taiko-node-dashboard-docker
  3. docker compose up
  4. visit http://localhost:7744 or http://dashboard.dojonode.xyz to access the dashboard
  5. click on the 📡 button and change localhost to the IP address of the node's machine

Provers and proposers

  1. Fill in the ethereum address(es) used for the node in the settings (📡 button) to view all the metrics

Integrate the dashboard into the node

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/taiko-node-systeminfo:latest
  ports:
    - "3009:3009"