Docker container to automatically build and output the bitcoin binaries.
Currently this container builds the binary using Ubuntu Trusty.
If you found this Docker container useful, please consider donating to original author:
17cufN5rCpbjRAns3knJD6qu4wdZybBFaJ
- Linux system with Docker installed and running (preferably Debian-based)
- 1GB+ memory for builds
- 4GB free space for builds
- Make a directory that will serve as the output of the build and will contain the
bitcoindbinary when complete:$ mkdir ~/output - Run the builder, specifying the output directory as an argument to Docker:
$ docker run -v ~/output:/bitcoin-out zerodivide1\docker-bitcoind-builder - ...
- Profit! (if build succeeded, you'll see the
bitcoindbinary in the~/outputfolder) - Optional: To clean up the container:
- Find the name of the container that was just run:
$ docker ps -a | grep zerodivide1\docker-bitcoind-builder - Remove the used image:
where
$ docker rm xxxxxxxxis the name of the container from the previous step (e.g.evil_heisenberg)
This Docker container is released under a GNU v2 Public License. See LICENSE.md for more details.