A very light "ready to use" Genghis app based on Alpine.
Genghis is a single-file MongoDB admin app, by Justin Hileman.
docker run --name genghis-app --link mongo-instance:db dockervan/genghisYou have to set at least one mongo link named db to get Genghis working properly.
This image includes EXPOSE 5678 (the Genghis default port),
so standard container linking will make it automatically available to the linked containers.
You can also publish the container port:
docker run --name genghis-app --link mongo-instance:db -p 5678:5678 dockervan/genghisGenghis will be available on http://localhost:5678.
You can link multiple databases to your Genghis app.
All links names must be prefixed by db_:
docker run --name genghis-app --link mongo-instance:db --link other-instance:db_2 --link mongofoo:db_foo -p 5678:5678 dockervan/genghisIf you have a complex mongo structure that can not be compatible with the previous example,
you can add a servers.custom file that will contain arguments to give at the --servers option of Genghis.
Example of servers.custom:
db;localhost;42.42.42.42:25847
Once the file created, link it on docker command:
docker run --name genghis-app --link mongo-instance:db --volume /path/to/servers.custom:/servers.custom:ro dockervan/genghisHere a light example to use this image with docker-compose:
mongo:
image: mongo:2.6
genghis:
image: dockervan/genghis
links:
- mongo:db
ports:
- '8101:5678'In contrary to the other Genghis images, this one is based on Alpine Linux OS and provide a very light application (less than 30 MB).
This method is perfect for "ready to use" application images. You can see another example with phpMyAdmin official image.