Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save straumat/54edc240554f84c71b81a8d926b8f5be to your computer and use it in GitHub Desktop.
Save straumat/54edc240554f84c71b81a8d926b8f5be to your computer and use it in GitHub Desktop.
version: '2'
services:
# ====================================================================================================================
# https://hub.docker.com/r/ruimarinho/bitcoin-core/
bitcoin-core:
image: ruimarinho/bitcoin-core:0.18.1
volumes:
- ./data/bitcoin-core:/home/bitcoin/.bitcoin
ports:
- 8332:8332
command:
-server=1
-rest=1
-rpcuser=bitcoinrpc
-rpcpassword=JRkDy3tgCYdmCEqY1VdfdfhTswiRva
-txindex=1
-rpcallowip=0.0.0.0/0
-rpcbind=127.0.0.1
-rpcbind=bitcoin-core
-rpcallowip=::/0
-rpcworkqueue=100
# ====================================================================================================================
# https://hub.docker.com/_/neo4j/
neo4j:
image: neo4j:3.5.12
volumes:
- ./data/neo4j:/var/lib/neo4j/data
ports:
- 7474:7474
- 7687:7687
environment:
- NEO4J_AUTH=neo4j/neo4j123
# ====================================================================================================================
# https://hub.docker.com/r/straumat/blockchain2graph-bitcoin-neo4j/
blockchain2graph-bitcoin-neo4j:
image: straumat/blockchain2graph-bitcoin-neo4j:3.0
ports:
- 8080:8080
links:
- bitcoin-core
- neo4j
environment:
- BITCOINCORE_HOSTNAME=bitcoin-core
- BITCOINCORE_USERNAME=bitcoinrpc
- BITCOINCORE_PASSWORD=JRkDy3tgCYdmCEqY1VdfdfhTswiRva
- SPRING_DATA_NEO4J_URI=bolt://neo4j:neo4j123@neo4j:7687
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment