mirror of
https://github.com/Retropex/umbrel-bitcoin.git
synced 2025-05-12 03:00:49 +02:00
17 lines
352 B
Bash
Executable File
17 lines
352 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# function cleanup() {
|
|
# docker-compose down
|
|
# echo "Nuking data dirs..."
|
|
# rm -rf data
|
|
# }
|
|
# trap cleanup EXIT
|
|
|
|
docker-compose up &
|
|
|
|
while true
|
|
do
|
|
sleep 10
|
|
echo "Generating a block..."
|
|
docker-compose exec bitcoind bitcoin-cli -regtest generatetoaddress 1 "bcrt1qs758ursh4q9z627kt3pp5yysm78ddny6txaqgw"
|
|
done |