Created
March 11, 2016 10:49
-
-
Save higarin/95055738d9b84aa09bb0 to your computer and use it in GitHub Desktop.
GridDB-Docker
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# GridDB | |
FROM centos:6.7 | |
MAINTAINER lulichn <[email protected]> | |
RUN set -ex \ | |
&& yum update -y \ | |
&& yum install -y unzip \ | |
&& yum groupinstall -y "Development Tools" | |
RUN set -ex \ | |
&& cd /tmp \ | |
&& curl -L https://codeload.github.com/griddb/griddb_nosql/zip/master -o griddb.zip \ | |
&& unzip griddb.zip -d /usr/local \ | |
&& rm -rf griddb.zip \ | |
&& ls -la /usr/local/griddb_nosql-master \ | |
&& cd /usr/local/griddb_nosql-master \ | |
&& ./bootstrap.sh \ | |
&& ./configure \ | |
&& make | |
VOLUME "/root/griddb" "/root/griddb/log" | |
ENV GS_HOME=/root/griddb | |
ENV GS_LOG=/root/griddb/log |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment