Based on https://github.com/zerodivide1/docker-bitcoind-builder Docker container to automatically build and output the shadowcashd binary. Currently this container builds the binary using Ubuntu.
- Docker installed and running
- 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
shadowcashdbinary when complete:$ mkdir ~/output - Run the builder, specifying the output directory as an argument to Docker:
$ docker run -v ~/output:/shadowcash-out docker-shadowcashd-builder - ...
- Profit! (if build succeeded, you'll see the
shadowcashdbinary in the~/outputfolder) - Optional: To clean up the container:
- Find the name of the container that was just run:
$ docker ps -a | grep docker-shadowcashd-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.