1
0
Fork 0
mirror of https://github.com/Eulentier161/next-node-monitor.git synced 2026-02-04 12:21:16 +01:00
Banano Node Monitor in Next.js https://node.eule.wtf
  • TypeScript 91.9%
  • Dockerfile 4.8%
  • JavaScript 1.8%
  • CSS 1.5%
Find a file
2026-01-29 18:35:14 +01:00
.github/assets runner2 2025-12-17 23:24:22 +01:00
public 2+2 2025-12-17 20:46:18 +01:00
src benis 2025-12-17 23:01:14 +01:00
.dockerignore 2+2 2025-12-17 20:46:18 +01:00
.gitignore 2+2 2025-12-17 20:46:18 +01:00
.prettierrc 2+2 2025-12-17 20:46:18 +01:00
docker-compose.yml 1ban=1ban 2025-12-20 12:11:54 +01:00
Dockerfile deps 2025-12-23 18:54:49 +01:00
eslint.config.mjs 2+2 2025-12-17 20:46:18 +01:00
LICENSE 2+2 2025-12-17 20:46:18 +01:00
next.config.ts deps 2026-01-22 20:02:40 +01:00
package-lock.json deps 2026-01-29 18:35:14 +01:00
package.json deps 2026-01-29 18:35:14 +01:00
postcss.config.mjs 2+2 2025-12-17 20:46:18 +01:00
README.md deps 2026-01-29 18:35:14 +01:00
tsconfig.json 2+2 2025-12-17 20:46:18 +01:00

next-node-monitor

Usage

Docker Compose

this docker-compose.yml will set you up with a running banano node and this project as monitor. Change the environment variables to your liking. You can find more informations about running a banano node in the bananocoin/banano Wiki.

services:
  banano-monitor:
    image: ghcr.io/eulentier161/next-node-monitor:0.1.6
    restart: unless-stopped
    ports:
      - "127.0.0.1:3000:3000"
    environment:
      - "METADATA_NAME=Banano Node Monitor"
      - "METADATA_SHORT_NAME=Eulentiers Node"
      - "METADATA_DESCRIPTION=A Banano Node Monitor from Eulentier"
      - "NODE_REPRESENTATIVE=ban_1hootubxy68fhhrctjmaias148tz91tsse3pq1pgmfedsm3cubhobuihqnxd"
      - "NODE_NAME=Eulentier"
      - "NODE_LOCATION=The Jungle"
      - "NODE_RPC_HOST=banano-node"
      - "NODE_RPC_PORT=7072"
      - "NODE_TCP_PORT=7071"
      - "CACHE_TIME=10"
      - "HEADING_TEXT=<p>This value is injected into the header to the left of the monKey. You can pass any valid HTML here.</p>"
    depends_on:
      - banano-node

  banano-node:
    image: bananocoin/banano:V26.1
    restart: unless-stopped
    ports:
      - "127.0.0.1:7071:7071"
      - "127.0.0.1:7072:7072"
      - "127.0.0.1:7074:7074"
    volumes:
      - ./BananoDockerRoot:/root
    healthcheck:
      test: ["CMD", "curl", "-d", "'{", '"action":"version"', "}'", "http://127.0.0.1:7072"]

networks:
  default:
    driver: bridge