Skip to content

r00xat/bitcoin-node-dashboard

 
 

Repository files navigation

Bitcoin Node Dashboard

GitHub Tag Docker Image Size (tag) Static Badge

Bitcoin Node Dashboard is a dashboard to see info about your Bitcoin Node.

This fork removes the weblogin.

Note

Changed or deleted files

modified: backend/src/Server.js
deleted: backend/src/middlewares/auth.js
deleted: backend/src/routes/auth.js
modified: frontend/src/App.tsx
modified: frontend/src/components/NavBar.tsx
modified: frontend/src/store/api/api.ts
modified: frontend/src/store/userStore.ts
deleted: frontend/src/utils/auth.ts
deleted: frontend/src/views/Login.tsx

image

Create your own docker image

git clone https://github.com/r00xat/bitcoin-node-dashboard.git
cd bitcoin-node-dashboard/
docker build -t bitcoin-node-dashboard:own .

Usage

services:
   bnd:
      image: bitcoin-node-dashboard:own # Use your own docker image!
      container_name: bnd
      ports:
         - 1100:1101
      volumes:
         - /absolute-path-to-your-docker-folder/backup-stats:/data
         - /absolute-path-to-your-node/bitcoin:/root/.bitcoin:ro
      environment:
         BTC_HOST: 192.168.1.10
         BTC_PORT: 8332
         BITCOIND_DIR: /root/.bitcoin # Or you can use user/pass auth
         BTC_USERNAME: your-rpc-usern
         BTC_PASSWORD: your-rpc-password
      restart: unless-stopped

About

A dashboard to see info about your Bitcoin Node.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • TypeScript 76.6%
  • JavaScript 21.8%
  • Other 1.6%