https://github.com/mu373/bitcoind-dashboard
Simple dashboard for bitcoind. Designed to work with bitcoind running in Docker.
https://github.com/mu373/bitcoind-dashboard
bitcoin bitcoind dashboard docker nextjs
Last synced: 5 months ago
JSON representation
Simple dashboard for bitcoind. Designed to work with bitcoind running in Docker.
- Host: GitHub
- URL: https://github.com/mu373/bitcoind-dashboard
- Owner: mu373
- License: mit
- Created: 2023-08-15T13:06:18.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-12-03T00:41:35.000Z (over 1 year ago)
- Last Synced: 2025-04-11T01:39:39.950Z (about 1 year ago)
- Topics: bitcoin, bitcoind, dashboard, docker, nextjs
- Language: TypeScript
- Homepage:
- Size: 97.7 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bitcoind-dashboard
Simple dashboard for bitcoind. Designed to work with bitcoind running in another Docker container: [mu373/docker-bitcoind](https://github.com/mu373/docker-bitcoind).

## Setup
```sh
# Setup environment variables
cp .env.local.sample .env.local
vim .env.local
# Setup docker-compose
cp docker-compose-dev-template.yml docker-compose-dev.yml #For development
cp docker-compose-template.yml docker-compose.yml # For production
```
If you want to easily enable HTTPS access for production using [traefik](https://github.com/mu373/traefik), you can use [this docker-compose template](https://github.com/mu373/bitcoind-dashboard/blob/main/docker-compose-traefik-template.yml).
## Getting Started
```sh
docker compose -f docker-compose-dev.yml up -d # For development
docker compose -f docker-compose.yml up -d #For production
```
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.