Skip to content
This repository has been archived by the owner on Jun 24, 2021. It is now read-only.

Running with docker

Stéphane Traumat edited this page Mar 16, 2018 · 23 revisions

Before using Docker you have to install it on your system thanks to the documentations : Docker Installation & Docker Compose Installation. To avoid having to sudo every command, do sudo gpasswd -a $USER docker.

A docker image is available here : https://hub.docker.com/r/straumat/blockchain2graph/. It contains neo4j & blockchain2graph. It connects to our bitcoind server to get bitcoin data.

You can retrieve the image with the command : docker pull straumat/blockchain2graph:2.1-SNAPSHOT

Then you can run it with docker run -ti -p 8080:8080 -p 7687:7687 -p 7474:7474 -v /var/lib/neo4j:/opt/neo4j -e SYNC="true" straumat/blockchain2graph:2.1-SNAPSHOT

You can bow see the blockchain2graph console at http://localhost:8080/ and the neo4j console at http://localhost:7474/browser/.

Clone this wiki locally