4.0.13-ol-7-r19 release
This commit is contained in:
parent
203ff53835
commit
ef9e928d15
|
|
@ -19,7 +19,7 @@ RUN curl --silent -L https://github.com/mikefarah/yq/releases/download/2.4.0/yq_
|
|||
COPY rootfs /
|
||||
RUN /postunpack.sh
|
||||
ENV BITNAMI_APP_NAME="mongodb" \
|
||||
BITNAMI_IMAGE_VERSION="4.0.13-ol-7-r18" \
|
||||
BITNAMI_IMAGE_VERSION="4.0.13-ol-7-r19" \
|
||||
NAMI_PREFIX="/.nami" \
|
||||
PATH="/opt/bitnami/mongodb/bin:$PATH"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,20 +1,29 @@
|
|||
#!/bin/sh
|
||||
set -e
|
||||
set -u
|
||||
n=0
|
||||
set -eu
|
||||
|
||||
if [[ -n "oracle-epel-release-el7" ]]; then
|
||||
if ! yum list installed oracle-epel-release-el7 >/dev/null 2>&1; then
|
||||
yum -y install oracle-epel-release-el7 >/dev/null 2>&1
|
||||
CODE=$?
|
||||
if (( $CODE != 0 )); then
|
||||
echo "EPEL repository installation failed"
|
||||
exit $CODE
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
max=2
|
||||
until [ $n -gt $max ]; do
|
||||
for ((n = 1 ; n <= max ; n+=1 )); do
|
||||
set +e
|
||||
yum --enablerepo base,updates,ol7_developer_EPEL,ol7_optional_latest install -y "$@"
|
||||
CODE=$?
|
||||
set -e
|
||||
if [ $CODE -eq 0 ]; then
|
||||
if (( $CODE == 0 )); then
|
||||
break
|
||||
fi
|
||||
if [ $n -eq $max ]; then
|
||||
if (( $n == $max )); then
|
||||
exit $CODE
|
||||
fi
|
||||
echo "yum failed, retrying"
|
||||
n=$(($n + 1))
|
||||
done
|
||||
rm -r /var/cache/yum
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t
|
|||
* [`4.2-ol-7`, `4.2.1-ol-7-r18` (4.2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-mongodb/blob/4.2.1-ol-7-r18/4.2/ol-7/Dockerfile)
|
||||
* [`4.2-debian-9`, `4.2.1-debian-9-r16`, `4.2`, `4.2.1`, `4.2.1-r16` (4.2/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-mongodb/blob/4.2.1-debian-9-r16/4.2/debian-9/Dockerfile)
|
||||
* [`4.2-centos-7`, `4.2.1-centos-7-r18` (4.2/centos-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-mongodb/blob/4.2.1-centos-7-r18/4.2/centos-7/Dockerfile)
|
||||
* [`4.0-ol-7`, `4.0.13-ol-7-r18` (4.0/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-mongodb/blob/4.0.13-ol-7-r18/4.0/ol-7/Dockerfile)
|
||||
* [`4.0-ol-7`, `4.0.13-ol-7-r19` (4.0/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-mongodb/blob/4.0.13-ol-7-r19/4.0/ol-7/Dockerfile)
|
||||
* [`4.0-debian-9`, `4.0.13-debian-9-r8`, `4.0`, `4.0.13`, `4.0.13-r8`, `latest` (4.0/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-mongodb/blob/4.0.13-debian-9-r8/4.0/debian-9/Dockerfile)
|
||||
* [`4.0-centos-7`, `4.0.13-centos-7-r19` (4.0/centos-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-mongodb/blob/4.0.13-centos-7-r19/4.0/centos-7/Dockerfile)
|
||||
* [`3.6-ol-7`, `3.6.15-ol-7-r19` (3.6/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-mongodb/blob/3.6.15-ol-7-r19/3.6/ol-7/Dockerfile)
|
||||
|
|
|
|||
Loading…
Reference in New Issue