This project sets up a self-hosted Bitcoin infrastructure on a Synology NAS (DS1019+ with 16GB RAM and 2TB NVME) using Docker. It is tailored for power users who want to:
- Run a fully validating Bitcoin full node
- Enable solo mining using their own ASIC hardware
- Analyze mining statistics and mempool data
- Operate with full control, no third-party reliance, and local-first architecture
This stack brings together multiple containers to deliver a comprehensive, modular Bitcoin infrastructure:
Component | Description |
---|---|
Bitcoin Core | The backbone: a full Bitcoin node that validates the entire blockchain and exposes RPC interfaces. |
Fulcrum | High-performance Electrum server indexing the blockchain for wallet queries. |
CKPool (Solo) | A modified solo mining pool implementation allowing ASIC miners to mine directly against your local node. |
CKStats | Parses CKPool logs, stores mining events in PostgreSQL, and provides insights into hash rate, luck, and shares. |
Bitcoin Explorer | Web-based block explorer using RPC access to your Bitcoin Core. |
Mempool | Powerful mempool visualizer and blockchain explorer (requires InfluxDB + Grafana). |
InfluxDB | Time-series database used by Mempool and CKStats to store block and mempool metrics. |
Grafana | Dashboards for visualizing metrics from InfluxDB (e.g., hash rate, block times, mempool size). |
Running your own Bitcoin full node is the most secure and private way to use Bitcoin. By adding:
- CKPool-solo, you bypass centralized mining pools
- Fulcrum, you serve your own wallets like Electrum
- Mempool + Explorer, you get full insight into mempool congestion and fee estimation
- Self-hosted stack on Synology, you stay in full control of your data and operations
This project automates the setup of a resilient, modular, and observable Bitcoin stack using Docker β optimized for Synology NAS environments but portable to any Linux system.
This stack is designed around sovereignty:
- No API keys
- No cloud services
- No third-party wallets
- No dependence on public electrum or explorer services
You validate everything. You own everything. You mine for yourself.
To get started, you only need a Synology NAS with Docker support (or any Linux machine) and around 700 GB of free disk space. Performance varies depending on storage type.
For best results, especially during initial blockchain sync:
- Optimal Setup: Place the full blockchain and indexes on a fast NVMe volume (β700 GB total).
- Hybrid Setup (Recommended for Synology):
- Slow HDD (e.g.,
/volume1/data
) for blockchain data (blocks
andchainstate
) - Fast NVMe (e.g.,
/volume2/docker/appdata
) for:- Bitcoin indexes (
indexes
folder, ~100 GB) - All Docker configs and containers
- Bitcoin indexes (
- Slow HDD (e.g.,
π‘ On a Synology DS1019+, using this hybrid layout, the entire Bitcoin blockchain synced in just 4 days.
-
SSH into your Synology NAS (or Linux host).
-
Download and execute the setup script:
curl -sSL https://raw.githubusercontent.com/magicdude4eva/btc-fullnode-stack/main/setup.sh | bash
-
Follow the prompts:
- Confirm or adjust the slow-storage path (
/volume1/data
) for blockchain data - Confirm or adjust the fast-storage path (
/volume2/docker/appdata
) for configs, indexes, and container volumes
- Confirm or adjust the slow-storage path (
The setup script will:
- β Clone this repository into your fast NVMe volume
- π Generate secure Bitcoin RPC credentials using
rpcauth.py
- π§ Automatically inject those credentials into:
bitcoin.conf
(for Bitcoin Core)bitcoin-explorer.conf
(for BTC RPC Explorer)ckpool.conf
(for the solo mining pool)
- π Prepare the required directory structure with proper ownership:
- UID/GID mapping for Docker containers
- Special user mappings for Postgres (CKStats), Grafana, and InfluxDB
- π Ensure fast index storage for optimal Bitcoin node performance
To get your full node up and running, follow these steps:
Begin by launching the Bitcoin Core node. This is the foundation for all other components.
docker compose --profile bitcoin up -d bitcoind
You can follow the logs to monitor its startup and sync status:
docker logs -f bitcoin-node
Initial synchronization can take 2β4 days, depending on your system's NVMe/HDD speed and CPU performance.
You can check the progress using the following command:
docker exec -it bitcoin-node bitcoin-cli -conf=/bitcoin/bitcoin.conf -datadir=/bitcoin getblockchaininfo
Example output:
{
"chain": "main",
"blocks": 907250,
"headers": 907250,
"bestblockhash": "000000000000000000017d6a511247219bdc9da8c5150eb3add0b41f99793613",
"bits": "1702349e",
"difficulty": 127620086886391.8,
"verificationprogress": 0.9999998634713957,
"initialblockdownload": false,
"size_on_disk": 767801082543,
"pruned": false
}
Watch for "initialblockdownload": false
which means that the blockchain has fully synced and is ready. This means your node is fully synced and ready to serve RPC requests.
β οΈ Important: Do not startcksolo
(the mining pool) or your miner before this status is reached. Mining during the initial download phase will lead to rejected shares and wasted energy.
CKSolo is a lightweight, minimalist solo mining pool originally developed by Con Kolivas. It is ideal for miners who want to mine solo, directly submitting shares to their own Bitcoin Core node without relying on a third-party pool.
In this setup, CKSolo connects to your bitcoind
node and handles incoming mining work submissions via the Stratum protocol. If your miner finds a valid block, it is directly submitted and credited to your Bitcoin address.
π CKSolo logs all activity into
/volume2/docker/appdata/cksolo/logs/ckpool.log
, which is read by CKStats for statistics.
Once bitcoind
is fully synced, start CKSolo using:
docker compose --profile bitcoin up -d ckpool
You can monitor the log output with:
tail -f /volume2/docker/appdata/cksolo/logs/ckpool.log
CKStats is a companion service for CKSolo. It continuously parses the CKSolo ckpool.log
file and stores relevant mining metrics in an embedded PostgreSQL database. This enables historical tracking of:
- Accepted and rejected shares
- Miner activity and status
- Found blocks (if you're lucky)
- Hashrate trends
CKStats is designed to be lightweight and runs alongside the solo pool to provide insights without adding unnecessary load or complexity.
Once ckpool
is running, start CKStats using:
docker compose --profile bitcoin up -d ckstats
This will spin up the ckstats
service, connect it to the CKSolo-log file, and initialize the database under under ./ckstats/pgdata
βΉοΈ The
pgdata
directory is owned by user100
and group103
to match PostgreSQL's internal user. Do not change these permissions.
CKStats supports two environment variables for maintenance and development purposes, which are set in the docker-compose.yml
:
REBUILD_APP: "0" # Set to "1" to rebuild the app and run the migration
DB_REINITIALISE: "0" # Set to "1" to delete the entire database and wipe /ckstats/pgdata/*
Setting REBUILD_APP=1
will trigger a fresh rebuild of the application and rerun any required database migrations during container startup.
This is useful if you made changes to the CKStats codebase or updated dependencies and want to apply schema changes.
Setting DB_REINITIALISE=1
will wipe all data by deleting the entire PostgreSQL data directory (/ckstats/pgdata/
) and initialize it from scratch.
Use this with caution, as all previously logged stats will be lost.
π Important:
These flags only take effect during container startup. After a successful rebuild or reset, you must set both values back to 0
in your docker-compose.yml
file to prevent unintended data loss on future restarts.
CKStats automatically handles:
- Full application rebuild (if requested)
- Database schema migrations
- Fresh initialization (if reset)
Once the CKStats container is running, you can access the stats dashboard via http://<your-server-ip>:4000


CKStats updates automatically and gives you complete visibility into the performance of your CKPool solo mining setup.
This dashboard is part of the self-hosted Bitcoin solo mining setup and provides a detailed overview of mining performance and hardware metrics in real-time. The Grafana Mining Dashboard connects to an InfluxDB time-series database and visualizes mining-related metrics such as:
- β Hashrate (1m, 5m, 1h, 1d, 7d)
- π§± Shares (Accepted, Invalid, Duplicate)
- π₯ ASIC & VRM temperatures
- β‘ Power consumption (W), Voltage (V), Amperage (A)
- β±οΈ Uptime (current session and total)
- π« Pool errors
- π― Best share difficulty
This setup is especially useful for monitoring performance and troubleshooting mining hardware or pool issues over time. Start both InfluxDB and Grafana services using the following command:
docker compose --profile bitcoin up -d influxdb grafana
Both services use credentials defined in your .env file. By default: Username: admin / Password: password
Once running, you can access the Grafana dashboard at: http://<your-server-ip>:3000
Once your backend services (Bitcoin node, CKSolo, InfluxDB, Grafana, and CKStats) are up and running, itβs time to connect your NerdQAxe miner.
Head to your NerdQAxe web UI and set the Primary Stratum Pool to connect to your local CKSolo instance:
- Stratum Host:
192.168.1.97
(replace with the IP of your Docker host) - Stratum Port:
3333
- Stratum User: Your full mining address and worker name (e.g.,
bc1...nerdqaxe01
) - Stratum Password: leave as is or set a placeholder like
x
β οΈ Don't includestratum+tcp://
or the port in the host field. The host should be a raw IP or hostname only.

Next, enable InfluxDB metrics reporting so your miner stats appear in Grafana:
- β Enable the checkbox
- Influx URL:
http://192.168.1.97
(or your Docker host IP) - Influx Port:
8086
- Token: from your
.env
file - Bucket:
nerdq_data
(defined in.env
) - Org:
muffin_mining
(defined in.env
) - Prefix: A unique identifier for the miner, e.g.
nerdq01
After saving, reboot the miner for changes to take effect.
π Make sure the
Prefix
matches your naming in the Grafana dashboard to correctly group your stats.
Fulcrum is a high-performance Electrum server written in C++, designed to serve light wallets with fast, index-based blockchain access. It's a critical component if you're running interfaces like Mempool or Electrum wallets and want fast, efficient querying of the Bitcoin blockchain without bogging down your full node.
- Index-based lookups: Fulcrum allows wallet clients to quickly check balances, transactions, and history using indexed data.
- Mempool UI Backend: The Mempool interface relies on Fulcrum to fetch live blockchain data and mempool information.
- Separation of Concerns: Keeps your Bitcoin Core node lean while providing fast query capabilities to external tools.
β Important: Only start Fulcrum after your Bitcoin node is fully synced. Running Fulcrum during initial sync can lead to database corruption.
Even with NVMe storage, initialising Fulcrum takes time. On a Synology DS1019+ with NVMe volumes, the initial index sync took over a week.
- Do not stop Fulcrum or the NAS during this phase.
- Any interruption can corrupt the index and require a full rebuild.
- Consider disabling automatic reboots or DSM updates during initialisation.
docker compose --profile bitcoin --profile mempool up -d fulcrum
You can monitor its logs with:
docker logs -f mempool-fulcrum
β Only proceed to set up Mempool or Electrum clients after Fulcrum has successfully completed its initial sync.
At that point, Fulcrum will be fully indexed and ready to serve queries. You should see log lines indicating it's listening for connections and serving indexes, e.g.:
[info] Now listening on 0.0.0.0:50001 (TCP) and 0.0.0.0:50002 (SSL)
[info] Indexing complete. Ready to serve clients.
Bitcoin RPC Explorer is a web-based tool for inspecting and querying your local Bitcoin node. It provides an intuitive interface for viewing blocks, transactions, mempool activity, and various statistics pulled via RPC.
This is particularly useful when running your own full node, as it allows you to visualize what your node sees without needing to interact with raw RPC commands.
Before starting Bitcoin Explorer, make sure that:
- The Bitcoin Node is fully synced and running.
- Fulcrum has completed its initial indexing (optional but recommended for completeness).
Start the container using:
docker compose --profile bitcoin up -d bitcoin-explorer
The explorer will attempt to connect to your Bitcoin node using the credentials from the .env
file. If everything is set up correctly, youβll be able to browse blocks, transactions, and node status in real time. Once running, the explorer is accessible via: http://<your-server-ip>:3002
:
π» Support my work
All my software is free and built in my personal time. If it helps you or your business, please consider a small donation via PayPal β it keeps the coffee β and ideas flowing!
πΈ Crypto Donations
You can also send crypto to one of the addresses below:
(CRO) 0xb83c3Fe378F5224fAdD7a0f8a7dD33a6C96C422C (Cronos)
(USDC) 0xb83c3Fe378F5224fAdD7a0f8a7dD33a6C96C422C (ERC20)
(ETH) 0xfc316ba7d8dc325250f1adfafafc320ad75d87c0
(BNB) 0xfc316ba7d8dc325250f1adfafafc320ad75d87c0
(BTC) bc1q24fuw84l6whm20umlr56nvqjn908sec8pavk3z
Crypto.com PayString: magicdude$paystring.crypto.com
π§Ύ Recommended Platforms
- π Curve.com: Add your Crypto.com card to Apple Pay
- π Crypto.com: Stake and get your free Crypto Visa card
- π Binance: Trade altcoins easily