Skip to content

Instantly share code, notes, and snippets.

@lulichn
Created March 11, 2016 10:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lulichn/95055738d9b84aa09bb0 to your computer and use it in GitHub Desktop.
Save lulichn/95055738d9b84aa09bb0 to your computer and use it in GitHub Desktop.
GridDB-Docker
# GridDB
FROM centos:6.7
MAINTAINER lulichn <daisuke.develop@gmail.com>
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