2014-05-05 13:17:58 -04:00
|
|
|
# Dockerizing MongoDB: Dockerfile for building MongoDB images
|
|
|
|
# Based on ubuntu:latest, installs MongoDB following the instructions from:
|
|
|
|
# http://docs.mongodb.org/manual/tutorial/install-mongodb-on-ubuntu/
|
|
|
|
|
|
|
|
FROM ubuntu:latest
|
|
|
|
MAINTAINER Docker
|
|
|
|
|
|
|
|
# Installation:
|
|
|
|
# Import MongoDB public GPG key AND create a MongoDB list file
|
2015-02-11 17:16:41 -05:00
|
|
|
RUN apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv 7F0CEB10
|
2014-05-05 13:17:58 -04:00
|
|
|
RUN echo 'deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen' | tee /etc/apt/sources.list.d/10gen.list
|
|
|
|
|
|
|
|
# Update apt-get sources AND install MongoDB
|
2014-07-07 14:06:34 -04:00
|
|
|
RUN apt-get update && apt-get install -y mongodb-org
|
2014-05-05 13:17:58 -04:00
|
|
|
|
|
|
|
# Create the MongoDB data directory
|
|
|
|
RUN mkdir -p /data/db
|
|
|
|
|
|
|
|
# Expose port #27017 from the container to the host
|
|
|
|
EXPOSE 27017
|
|
|
|
|
2014-07-07 14:06:34 -04:00
|
|
|
# Set /usr/bin/mongod as the dockerized entry-point application
|
|
|
|
ENTRYPOINT ["/usr/bin/mongod"]
|