This week Dave talks with Jeremy Eder about blockchain, Hyperledger, OpenShift Blockchain, and more!
I spent all my profits on new fans.
BlockchainHyperledgerEthereum Used for ‘First’ Paid Energy Trade Using Blockchain TechOpenShift Blockchain InitiativeThe Rise and Rise of Bitcoin(Unprofitably) mine Litecoin using a RHEL 7 container
#
# Dockerfile for cpuminer
# usage: docker run creack/cpuminer --url xxxx --user xxxx --pass xxxx
# ex: docker run creack/cpuminer --url stratum+tcp://ltc.pool.com:80 --user creack.worker1 --pass abcdef
#
#
FROM rhel7
MAINTAINER David Egts
RUN yum -y update && \
yum -y install git automake gcc make curl-devel
RUN git clone https://github.com/pooler/cpuminer
RUN cd cpuminer && \
./autogen.sh && \
./configure CFLAGS="-O3" && \
make
WORKDIR /cpuminer
ENTRYPOINT ["./minerd"]
Jeremy Eder for getting us all blockchained up!