I've tried both the 32bit and 64bit under wine and both toss an error.
https://github.com/hempcoin-project/THC
Here is a docker file that builds that github project
https://hub.docker.com/r/hempcoin/hempcoind/
I must be doing something wrong, my results:
sudo docker pull hempcoin/hempcoind
Using default tag: latest
Pulling repository docker.io/hempcoin/hempcoind
Tag latest not found in repository docker.io/hempcoin/hempcoind
Thanks.
If you know Docker, feel free to edit the code. I want to add in more features. Auto start hempcoind. Docker allows you to go all over the place with hempcoin. I always like to add in an HTTPS server in the docker container so I can execute server side scripts.
DOCKERFILE
RUN apt-get update
RUN apt-get install -y \
build-essential \
libssl-dev \
libboost-all-dev \
libqrencode-dev \
git \
ntp \
libdb-dev \
libdb++-dev \
miniupnpc \
libminiupnpc-dev
RUN git clone https://github.com/hempcoin-project/THC.git
RUN cd THC/src/ && make -f makefile.unix hempcoind && mv hempcoind /usr/local/bin
$ sudo docker build -t "hempcoind" .
$ sudo docker images
Copy the container id of the container named "hempcoind"
$ sudo docker run -it
$ hempcoind