Vincent Batts
d59b1af998
git-subtree-dir: laughing-octo git-subtree-mainline:264531c268
git-subtree-split:ee815e9ccc
5 lines
248 B
Docker
5 lines
248 B
Docker
FROM fedora
|
|
RUN yum install --setopt=override_install_langs=en --setopt=tsflags=nodocs --setopt=keepcache=0 -y mongodb-server && mkdir -p /data/db && rm -rf /var/cache/yum
|
|
EXPOSE 27017 28017
|
|
VOLUME ["/data/db"]
|
|
CMD mongod --noprealloc --smallfiles
|