24 lines
610 B
YAML
24 lines
610 B
YAML
|
|
# Local regtest bitcoind for BTC intake E2E
|
||
|
|
# Usage: docker compose -f docker-compose.bitcoind-regtest.yml up -d
|
||
|
|
|
||
|
|
services:
|
||
|
|
bitcoind-regtest:
|
||
|
|
image: bitcoin/bitcoin:27.0
|
||
|
|
container_name: omnl-bitcoind-regtest
|
||
|
|
ports:
|
||
|
|
- "18443:18443"
|
||
|
|
volumes:
|
||
|
|
- ./data/bitcoind-regtest:/home/bitcoin/.bitcoin
|
||
|
|
command:
|
||
|
|
- -regtest=1
|
||
|
|
- -server=1
|
||
|
|
- -txindex=1
|
||
|
|
- -rpcuser=omnl
|
||
|
|
- -rpcpassword=omnl-regtest-local
|
||
|
|
- -rpcallowip=0.0.0.0/0
|
||
|
|
- -rpcbind=0.0.0.0
|
||
|
|
- -rpcport=18443
|
||
|
|
- -fallbackfee=0.0002
|
||
|
|
- -printtoconsole=1
|
||
|
|
restart: unless-stopped
|