mirror of
https://github.com/alexgo-io/stacks-blockchain-api.git
synced 2026-01-12 22:43:34 +08:00
* cleaning up docker feat/cleanup needed it's own cleanup since it was so out of date. better to just start over with an up to date pull of develop * Update paths for docker-compose files * Updating paths and compose version * switch network to testnet * adjusting stacks-blockchain configs * use correct context to build api image * use the defaults from develop branch * feat: update to latest stacks blockchain * fix: rosetta output paths * chore: update stacks api to v0.71.2 Co-authored-by: Charlie <2747302+CharlieC3@users.noreply.github.com> * fix: remove magic_byte from mainnet toml Co-authored-by: Charlie <2747302+CharlieC3@users.noreply.github.com> * fix: update stacks node everywhere Co-authored-by: wileyj <2847772+wileyj@users.noreply.github.com> Co-authored-by: Charlie <2747302+CharlieC3@users.noreply.github.com>
24 lines
662 B
YAML
24 lines
662 B
YAML
version: "3"
|
|
services:
|
|
bitcoind:
|
|
image: "blockstack/bitcoind:v0.20.99.0"
|
|
ports:
|
|
- "18443:18443"
|
|
- "18444:18444"
|
|
command:
|
|
/usr/local/bin/bitcoind
|
|
-printtoconsole
|
|
-regtest=1
|
|
-txindex=1
|
|
-rpcallowip=0.0.0.0/0
|
|
-rpcbind=0.0.0.0
|
|
-rpcuser=btc
|
|
-rpcpassword=btc
|
|
bitcoind-fill-faucet:
|
|
image: "byrnedo/alpine-curl"
|
|
depends_on:
|
|
- bitcoind
|
|
restart: on-failure
|
|
command: |
|
|
-f -u btc:btc --data-binary '{"jsonrpc": "1.0", "id":"c", "method": "generatetoaddress", "params": [110, "mrzLDS7LT3otAnpiRWGYkWipdnAZJaXAZQ"] }' -H 'content-type: text/plain;' http://bitcoind:18443/
|