4.0.4-debian-10-r14 release

This commit is contained in:
Bitnami Bot 2020-05-21 17:50:44 +00:00
parent 074afc5789
commit a8413c63ae
5 changed files with 33 additions and 6 deletions

View File

@ -7,7 +7,7 @@ ENV BITNAMI_PKG_CHMOD="-R g+rwX" \
COPY prebuildfs /
# Install required system packages and dependencies
RUN install_packages ca-certificates curl dirmngr gnupg libc6 procps sudo unzip zlib1g
RUN install_packages ca-certificates curl dirmngr gnupg gzip libc6 procps sudo tar zlib1g
RUN /build/bitnami-user.sh
RUN /build/install-nami.sh
RUN bitnami-pkg install java-11.0.7-1 --checksum e01669f15e2e655613c19eab1b8b533a720d6334766da34190a2a4939f5a0bc8
@ -19,13 +19,16 @@ RUN apt-get update && apt-get upgrade -y && \
COPY rootfs /
ENV BITNAMI_APP_NAME="neo4j" \
BITNAMI_IMAGE_VERSION="4.0.4-debian-10-r13" \
BITNAMI_IMAGE_VERSION="4.0.4-debian-10-r14" \
NAMI_PREFIX="/.nami" \
NEO4J_BOLT_PORT_NUMBER="7687" \
NEO4J_HOST="" \
NEO4J_HTTPS_PORT_NUMBER="7473" \
NEO4J_HTTP_PORT_NUMBER="7474" \
NEO4J_PASSWORD="bitnami"
NEO4J_PASSWORD="bitnami" \
OS_ARCH="amd64" \
OS_FLAVOUR="debian-10" \
OS_NAME="linux"
EXPOSE 7474 7473 8756

View File

@ -1,7 +1,7 @@
version: '2'
services:
neo4j:
image: 'bitnami/neo4j:4'
image: 'docker.io/bitnami/neo4j:4-debian-10'
ports:
- '7474:7474'
- '7473:7473'

View File

@ -0,0 +1,24 @@
#!/bin/sh
set -e
set -u
export DEBIAN_FRONTEND=noninteractive
n=0
max=2
until [ $n -gt $max ]; do
set +e
(
apt-get update -qq &&
apt-get install -y --no-install-recommends "$@"
)
CODE=$?
set -e
if [ $CODE -eq 0 ]; then
break
fi
if [ $n -eq $max ]; then
exit $CODE
fi
echo "apt failed, retrying"
n=$(($n + 1))
done
rm -r /var/lib/apt/lists /var/cache/apt/archives

View File

@ -35,7 +35,7 @@ $ docker-compose up -d
Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/).
* [`4-debian-10`, `4.0.4-debian-10-r13`, `4`, `4.0.4`, `latest` (4/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-neo4j/blob/4.0.4-debian-10-r13/4/debian-10/Dockerfile)
* [`4-debian-10`, `4.0.4-debian-10-r14`, `4`, `4.0.4`, `latest` (4/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-neo4j/blob/4.0.4-debian-10-r14/4/debian-10/Dockerfile)
Subscribe to project updates by watching the [bitnami/neo4j GitHub repo](https://github.com/bitnami/bitnami-docker-neo4j).

View File

@ -1,7 +1,7 @@
version: '2'
services:
neo4j:
image: 'bitnami/neo4j:4'
image: 'docker.io/bitnami/neo4j:4-debian-10'
ports:
- '7474:7474'
- '7473:7473'