guillermo/riak
Base ubuntu + riak 1.4.2 amd64 + modification to work out of the box
290
Image that should work out of the box and export the default protocol buffers and http interfaces. This is intended just for development with one node only. NOT FOR PRODUCTION
This is the Dockerfile use to create this image:
FROM ubuntu
MAINTAINER Guillermo Álvarez <guillermo@cientifico.net>
ADD riak_1.4.2-1_amd64.deb /tmp/riak_1.4.2-1_amd64.deb
RUN apt-get install libc6 libgcc1 libssl1.0.0 libstdc++6 libtinfo5 adduser logrotate sudo -y -y -y
RUN dpkg -i /tmp/riak_1.4.2-1_amd64.deb
RUN rm /tmp/riak_1.4.2-1_amd64.deb
ADD riak /usr/sbin/riak
ADD app.config /etc/riak/app.config
CMD /usr/sbin/riak start
EXPOSE 8098 8087
You can find the rest of the files in the guillermo/riak-docker github repository.
docker pull guillermo/riak