-
Notifications
You must be signed in to change notification settings - Fork 177
/
Copy pathDockerfile
58 lines (47 loc) · 2.2 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
FROM quay.io/centos7/s2i-core-centos7
ENV SUMMARY="MongoDB NoSQL database server" \
DESCRIPTION="MongoDB (from humongous) is a free and open-source \
cross-platform document-oriented database program. Classified as a NoSQL \
database program, MongoDB uses JSON-like documents with schemas. This \
container image contains programs to run mongod server."
LABEL summary="$SUMMARY" \
description="$DESCRIPTION" \
io.k8s.description="$DESCRIPTION" \
io.k8s.display-name="MongoDB 3.6" \
io.openshift.expose-services="27017:mongodb" \
io.openshift.tags="database,mongodb,rh-mongodb36" \
com.redhat.component="rh-mongodb36-container" \
name="centos7/mongodb-36-centos7" \
usage="docker run -d -e MONGODB_ADMIN_PASSWORD=my_pass quay.io/centos7/mongodb-36-centos7" \
version="1" \
maintainer="SoftwareCollections.org <[email protected]>"
ENV MONGODB_VERSION=3.6 \
# Set paths to avoid hard-coding them in scripts.
APP_DATA=/opt/app-root/src \
HOME=/var/lib/mongodb \
CONTAINER_SCRIPTS_PATH=/usr/share/container-scripts/mongodb \
# Incantations to enable Software Collections on `bash` and `sh -i`.
ENABLED_COLLECTIONS=rh-mongodb36 \
BASH_ENV="\${CONTAINER_SCRIPTS_PATH}/scl_enable" \
ENV="\${CONTAINER_SCRIPTS_PATH}/scl_enable" \
PROMPT_COMMAND=". \${CONTAINER_SCRIPTS_PATH}/scl_enable"
EXPOSE 27017
ENTRYPOINT ["container-entrypoint"]
CMD ["run-mongod"]
RUN yum install -y centos-release-scl && \
INSTALL_PKGS="bind-utils gettext iproute rsync tar rh-mongodb36-mongodb rh-mongodb36 rh-mongodb36-mongo-tools rh-mongodb36-syspaths groff-base" && \
yum install -y --setopt=tsflags=nodocs $INSTALL_PKGS && \
rpm -V $INSTALL_PKGS && \
yum -y clean all --enablerepo='*'
COPY s2i/bin/ $STI_SCRIPTS_PATH
COPY root /
# Container setup
RUN : > /etc/mongod.conf && \
mkdir -p ${HOME}/data && \
# Set owner 'mongodb:0' and 'g+rw(x)' permission - to avoid problems running container with arbitrary UID
/usr/libexec/fix-permissions /etc/mongod.conf ${CONTAINER_SCRIPTS_PATH}/mongod.conf.template \
${HOME} ${APP_DATA}/.. && \
usermod -a -G root mongodb && \
rpm-file-permissions
VOLUME ["/var/lib/mongodb/data"]
USER 184