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