adding a mongo server
This commit is contained in:
parent
64403714de
commit
1ed09e1af7
1 changed files with 5 additions and 0 deletions
5
fedora-mongo/Dockerfile
Normal file
5
fedora-mongo/Dockerfile
Normal file
|
@ -0,0 +1,5 @@
|
|||
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"
|
Loading…
Reference in a new issue