Docker build scripts for the BitcoinZ Restful API.
The BitcoinZ REST APIs are a set of APIs based on the insight explorer. For more information about the APIs routes available, you can checkout the documentation on the API project here: https://github.com/bitcoinz-dev-tools/insight-api-btcz
The following applications are required to run Insight:
- Docker 17.05 or higher
- bitcoinz docker container
Build the container with the following command:
docker build -t btcz/bitcoinz-rest-api .
To get the container up and running quickly, use the following command:
docker run -it --name bitcoinz \
-p 1989:1989 \
btcz/bitcoinz
docker run -it --name bitcoinz-rest-api \
--link bitcoinz
-p 3001:3001 \
btcz/bitcoinz-rest-api
To simplify operation of the insight service, you can use docker
compose. After installation, you can
use docker-compose by running the ./bin/docker.sh
script.