Debian-based Docker image with MongoDB 2.4.10 server.
2.5K
Debian-based Docker image with MongoDB 2.4 server. This runs MongoDB 2.4.10, the version in Debian Jessie repositories (and the same version available with Raspbian for the RaspberryPi).
This uses the default configuration file from the Debian Jessie package, with the following changes:
MongoDB will listen on port 27017, with the HTTP interface on 28017 enabled. Authentication is disabled.
Mongo's storage directory is /var/lib/mongodb within the container, which
is declared as a volume. You can save that volume, use a data volume for it,
or mount a host directory to that point.
Run detatched with ports bound to the same-numbered ports on the host:
docker run -d --name mongodb24 -p 27017:27017 -p 28017:28017 jantman/mongodb24
Run detatched with ports bound to random-numbered ports on the host:
docker run -d --name mongodb24 -P jantman/mongodb24
Run detatched, with /var/lib/mongodb on the host serving as the MongoDB
data directory, and the ports bound to the same-numbered ports on the host:
docker run -d --name mongodb24 -v /var/lib/mongodb:/var/lib/mongodb -p 27017:27017 -p 28017:28017 jantman/mongodb24
docker build -t jantman/mongodb24 .
This repository is licensed under the MIT License. That covers the repository contents only, not the image contents.
Content type
Image
Digest
Size
124.5 MB
Last updated
over 9 years ago
docker pull jantman/mongodb24