8000 Replace electrs with falcrum in the angornet script by dangershony · Pull Request #403 · block-core/angor · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Replace electrs with falcrum in the angornet script #403

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 28, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 19 additions & 17 deletions docker/explorers/angornet/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ volumes:
name: btc-db
mempool_blockchain:
name: mempool-blockchain
electrs_data:
name: electrs-data
fulcrum_data:
name: fulcrum-data


services:
Expand Down Expand Up @@ -56,7 +56,7 @@ services:
MEMPOOL_BACKEND: "electrum"
ESPLORA_REST_API_URL: "http://mempool-electrs:3003"
ESPLORA_REQUEST_TIMEOUT: "50000"
ELECTRUM_HOST: "mempool-electrs"
ELECTRUM_HOST: "mempool-fulcrum"
ELECTRUM_PORT: "5001"
ELECTRUM_TLS_ENABLED: "false"
CORE_RPC_HOST: "node"
Expand Down Expand Up @@ -132,26 +132,28 @@ services:
- btcnetwork
- proxy

mempool_electrs:
container_name: mempool-electrs
image: getumbrel/electrs:v0.10.9
mempool_fulcrum:
container_name: mempool-fulcrum
image: cculianu/fulcrum:latest
user: root
ports:
- 5001:5001
- 3003:3003
- 5001:5001 # Electrum protocol port
- 3003:3003 # HTTP REST API port (if enabled)
depends_on:
node:
condition: service_healthy
command: |
--network signet
--daemon-rpc-addr btc-node:38332
--daemon-p2p-addr btc-node:38333
--db-dir /electrs
--electrum-rpc-addr 0.0.0.0:5001
--log-filters INFO
environment:
- NETWORK=signet
volumes:
- electrs_data:/electrs
- ./electrs.conf:/etc/electrs/config.toml:ro
- fulcrum_data:/fulcrum_db
command: ["Fulcrum",
"--bitcoind", "btc-node:38332",
"--rpcuser", "rpcuser",
"--rpcpassword", "rpcpassword",
"--tcp", "0.0.0.0:5001",
"--stats", "0.0.0.0:3003"
]
restart: unless-stopped
networks:
- btcnetwork

Expand Down
0