Skip to content

Commit

Permalink
feat: Replace Insight with Bitcoin Core in BlockchainWriter (#408)
Browse files Browse the repository at this point in the history
  • Loading branch information
lautarodragan authored Sep 11, 2018
1 parent b132271 commit 6547ee4
Show file tree
Hide file tree
Showing 20 changed files with 2,102 additions and 1,151 deletions.
13 changes: 13 additions & 0 deletions docker-compose.testnet.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
version: '3'
services:
bitcoin-testnet:
image: ruimarinho/bitcoin-core:0.16.2
ports:
- "18332:18332"
command:
-printtoconsole
-server
-testnet=1
-rpcuser=bitcoinrpcuser
-rpcpassword=bitcoinrpcpassword
-rpcallowip=::/0
13 changes: 3 additions & 10 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,27 +36,20 @@ services:
- poet-mongo
- poet-rabbit
- poet-ipfs
- bitcoin-regtest
command: >
/bin/bash -c "
sleep 10;
npm start;
"
poet-bitcoind:
bitcoin-regtest:
image: ruimarinho/bitcoin-core:0.16.2
volumes:
- bitcoind1:/home/bitcoin/.bitcoin
ports:
- "18332:18332"
- "18443:18443"
- "18444:18444"
command:
-printtoconsole
-server
-testnet=1
-regtest=1
-rpcuser=bitcoinrpcuser
-rpcpassword=bitcoinrpcpassword
-rpcallowip=::/0

volumes:
bitcoind1:
driver: local
Loading

0 comments on commit 6547ee4

Please sign in to comment.