Skip to content

Instantly share code, notes, and snippets.

@djmaze
Created November 1, 2013 13:00
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 djmaze/7265068 to your computer and use it in GitHub Desktop.
Save djmaze/7265068 to your computer and use it in GitHub Desktop.
Dockerfile for ArangoDB
FROM ubuntu
RUN apt-get -y install wget
RUN echo 'deb http://www.arangodb.org/repositories/arangodb/xUbuntu_12.04/ /' >> /etc/apt/sources.list.d/arangodb.list && \
wget http://www.arangodb.org/repositories/arangodb/xUbuntu_12.04/Release.key && \
apt-key add - < Release.key
RUN apt-get update && apt-get -y install arangodb=1.4.0
CMD /usr/sbin/arangod -c /etc/arangodb/arangod.conf
EXPOSE 8529
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment