mirror of
https://github.com/Ride-The-Lightning/RTL.git
synced 2025-03-12 18:48:09 +01:00
10 lines
206 B
Text
10 lines
206 B
Text
|
#!/usr/bin/env bash
|
||
|
|
||
|
source .env
|
||
|
|
||
|
docker-compose exec bitcoind bitcoin-cli \
|
||
|
-datadir=/bitcoin \
|
||
|
-rpcuser=$BITCOIN_RPC_USER \
|
||
|
-rpcpassword=$BITCOIN_RPC_PASSWORD \
|
||
|
-rpcport=$BITCOIN_RPC_PORT \
|
||
|
"$@"
|