-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Publish Neo4j 3.1.0 #2434
Merged
Merged
Publish Neo4j 3.1.0 #2434
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/neo4j_enterprise/Dockerfile b/neo4j_3.0-enterprise/Dockerfile
similarity index 100%
copy from neo4j_enterprise/Dockerfile
copy to neo4j_3.0-enterprise/Dockerfile
diff --git a/neo4j_latest/docker-entrypoint.sh b/neo4j_3.0-enterprise/docker-entrypoint.sh
similarity index 100%
copy from neo4j_latest/docker-entrypoint.sh
copy to neo4j_3.0-enterprise/docker-entrypoint.sh
diff --git a/neo4j_latest/local-package/.sentinel b/neo4j_3.0-enterprise/local-package/.sentinel
similarity index 100%
copy from neo4j_latest/local-package/.sentinel
copy to neo4j_3.0-enterprise/local-package/.sentinel
diff --git a/neo4j_latest/Dockerfile b/neo4j_3.0/Dockerfile
similarity index 100%
copy from neo4j_latest/Dockerfile
copy to neo4j_3.0/Dockerfile
diff --git a/neo4j_latest/docker-entrypoint.sh b/neo4j_3.0/docker-entrypoint.sh
similarity index 100%
copy from neo4j_latest/docker-entrypoint.sh
copy to neo4j_3.0/docker-entrypoint.sh
diff --git a/neo4j_latest/local-package/.sentinel b/neo4j_3.0/local-package/.sentinel
similarity index 100%
copy from neo4j_latest/local-package/.sentinel
copy to neo4j_3.0/local-package/.sentinel
diff --git a/neo4j_enterprise/Dockerfile b/neo4j_enterprise/Dockerfile
index d60bc1f..57f1284 100644
--- a/neo4j_enterprise/Dockerfile
+++ b/neo4j_enterprise/Dockerfile
@@ -1,13 +1,17 @@
-FROM java:openjdk-8-jre
+FROM openjdk:8-jre-alpine
-ENV NEO4J_SHA256 92edf396616be8a1cdb41dd05c300865959f97944f4fe7f50539401a49c095d5
-ENV NEO4J_TARBALL neo4j-enterprise-3.0.7-unix.tar.gz
-ARG NEO4J_URI=http://dist.neo4j.org/neo4j-enterprise-3.0.7-unix.tar.gz
+RUN apk add --no-cache --quiet \
+ bash \
+ curl
+
+ENV NEO4J_SHA256 1f289296c23004ace4d37e14f2af433d203dfb028977534429e766bc308d584a
+ENV NEO4J_TARBALL neo4j-enterprise-3.1.0-unix.tar.gz
+ARG NEO4J_URI=http://dist.neo4j.org/neo4j-enterprise-3.1.0-unix.tar.gz
COPY ./local-package/* /tmp/
RUN curl --fail --silent --show-error --location --remote-name ${NEO4J_URI} \
- && echo "${NEO4J_SHA256} ${NEO4J_TARBALL}" | sha256sum --check --quiet - \
+ && echo "${NEO4J_SHA256} ${NEO4J_TARBALL}" | sha256sum -csw - \
&& tar --extract --file ${NEO4J_TARBALL} --directory /var/lib \
&& mv /var/lib/neo4j-* /var/lib/neo4j \
&& rm ${NEO4J_TARBALL}
@@ -15,7 +19,7 @@ RUN curl --fail --silent --show-error --location --remote-name ${NEO4J_URI} \
WORKDIR /var/lib/neo4j
RUN mv data /data \
- && ln --symbolic /data
+ && ln -s /data
VOLUME /data
diff --git a/neo4j_enterprise/docker-entrypoint.sh b/neo4j_enterprise/docker-entrypoint.sh
index c2c40b5..540cf82 100755
--- a/neo4j_enterprise/docker-entrypoint.sh
+++ b/neo4j_enterprise/docker-entrypoint.sh
@@ -3,16 +3,10 @@
setting() {
setting="${1}"
value="${2}"
- file="${3:-neo4j.conf}"
-
- if [ ! -f "conf/${file}" ]; then
- if [ -f "conf/neo4j.conf" ]; then
- file="neo4j.conf"
- fi
- fi
+ file="neo4j.conf"
if [ -n "${value}" ]; then
- if grep --quiet --fixed-strings "${setting}=" conf/"${file}"; then
+ if grep -q -F "${setting}=" conf/"${file}"; then
sed --in-place "s|.*${setting}=.*|${setting}=${value}|" conf/"${file}"
else
echo "${setting}=${value}" >>conf/"${file}"
@@ -23,9 +17,9 @@ setting() {
if [ "$1" == "neo4j" ]; then
setting "dbms.tx_log.rotation.retention_policy" "${NEO4J_dbms_txLog_rotation_retentionPolicy:-100M size}"
setting "dbms.memory.pagecache.size" "${NEO4J_dbms_memory_pagecache_size:-512M}"
- setting "wrapper.java.additional=-Dneo4j.ext.udc.source" "${NEO4J_UDC_SOURCE:-docker}" neo4j-wrapper.conf
- setting "dbms.memory.heap.initial_size" "${NEO4J_dbms_memory_heap_maxSize:-512}" neo4j-wrapper.conf
- setting "dbms.memory.heap.max_size" "${NEO4J_dbms_memory_heap_maxSize:-512}" neo4j-wrapper.conf
+ setting "wrapper.java.additional=-Dneo4j.ext.udc.source" "${NEO4J_UDC_SOURCE:-docker}"
+ setting "dbms.memory.heap.initial_size" "${NEO4J_dbms_memory_heap_maxSize:-512M}"
+ setting "dbms.memory.heap.max_size" "${NEO4J_dbms_memory_heap_maxSize:-512M}"
setting "dbms.unmanaged_extension_classes" "${NEO4J_dbms_unmanagedExtensionClasses:-}"
setting "dbms.allow_format_migration" "${NEO4J_dbms_allowFormatMigration:-}"
@@ -37,50 +31,27 @@ if [ "$1" == "neo4j" ]; then
echo "Invalid value for password. It cannot be 'neo4j', which is the default."
exit 1
fi
-
- setting "dbms.connector.http.address" "127.0.0.1:7474"
- setting "dbms.connector.https.address" "127.0.0.1:7473"
- setting "dbms.connector.bolt.address" "127.0.0.1:7687"
- bin/neo4j start || \
- (cat logs/neo4j.log && echo "Neo4j failed to start" && exit 1)
-
- end="$((SECONDS+100))"
- while true; do
- http_code="$(curl --silent --write-out %{http_code} --user "neo4j:${password}" --output /dev/null http://localhost:7474/db/data/ || true)"
-
- if [[ "${http_code}" = "200" ]]; then
- break;
- fi
-
- if [[ "${http_code}" = "401" ]]; then
- curl --fail --silent --show-error --user neo4j:neo4j \
- --data '{"password": "'"${password}"'"}' \
- --header 'Content-Type: application/json' \
- http://localhost:7474/user/neo4j/password
- break;
- fi
-
- if [[ "${SECONDS}" -ge "${end}" ]]; then
- (cat logs/neo4j.log && echo "Neo4j failed to start" && exit 1)
- fi
-
- sleep 1
- done
-
- bin/neo4j stop
+ bin/neo4j-admin set-initial-password "${password}"
elif [ -n "${NEO4J_AUTH:-}" ]; then
echo "Invalid value for NEO4J_AUTH: '${NEO4J_AUTH}'"
exit 1
fi
- setting "dbms.connector.http.address" "0.0.0.0:7474"
- setting "dbms.connector.https.address" "0.0.0.0:7473"
- setting "dbms.connector.bolt.address" "0.0.0.0:7687"
+ setting "dbms.connectors.default_listen_address" "0.0.0.0"
+ setting "dbms.connector.http.listen_address" "0.0.0.0:7474"
+ setting "dbms.connector.https.listen_address" "0.0.0.0:7473"
+ setting "dbms.connector.bolt.listen_address" "0.0.0.0:7687"
setting "dbms.mode" "${NEO4J_dbms_mode:-}"
+ setting "dbms.connectors.default_advertised_address" "${NEO4J_dbms_connectors_defaultAdvertisedAddress:-}"
setting "ha.server_id" "${NEO4J_ha_serverId:-}"
setting "ha.host.data" "${NEO4J_ha_host_data:-}"
setting "ha.host.coordination" "${NEO4J_ha_host_coordination:-}"
setting "ha.initial_hosts" "${NEO4J_ha_initialHosts:-}"
+ setting "causal_clustering.expected_core_cluster_size" "${NEO4J_causalClustering_expectedCoreClusterSize:-}"
+ setting "causal_clustering.initial_discovery_members" "${NEO4J_causalClustering_initialDiscoveryMembers:-}"
+ setting "causal_clustering.discovery_advertised_address" "${NEO4J_causalClustering_discoveryAdvertisedAddress:-$(hostname):5000}"
+ setting "causal_clustering.transaction_advertised_address" "${NEO4J_causalClustering_transactionAdvertisedAddress:-$(hostname):6000}"
+ setting "causal_clustering.raft_advertised_address" "${NEO4J_causalClustering_raftAdvertisedAddress:-$(hostname):7000}"
[ -f "${EXTENSION_SCRIPT:-}" ] && . ${EXTENSION_SCRIPT}
diff --git a/neo4j_latest/Dockerfile b/neo4j_latest/Dockerfile
index d7dfd6d..0c29557 100644
--- a/neo4j_latest/Dockerfile
+++ b/neo4j_latest/Dockerfile
@@ -1,13 +1,17 @@
-FROM java:openjdk-8-jre
+FROM openjdk:8-jre-alpine
-ENV NEO4J_SHA256 69f7b410934d0a83120f892c1f341905b3a9346656b5d085eca1da612b8e7ae6
-ENV NEO4J_TARBALL neo4j-community-3.0.7-unix.tar.gz
-ARG NEO4J_URI=http://dist.neo4j.org/neo4j-community-3.0.7-unix.tar.gz
+RUN apk add --no-cache --quiet \
+ bash \
+ curl
+
+ENV NEO4J_SHA256 47317a5a60f72de3d1b4fae4693b5f15514838ff3650bf8f2a965d3ba117dfc2
+ENV NEO4J_TARBALL neo4j-community-3.1.0-unix.tar.gz
+ARG NEO4J_URI=http://dist.neo4j.org/neo4j-community-3.1.0-unix.tar.gz
COPY ./local-package/* /tmp/
RUN curl --fail --silent --show-error --location --remote-name ${NEO4J_URI} \
- && echo "${NEO4J_SHA256} ${NEO4J_TARBALL}" | sha256sum --check --quiet - \
+ && echo "${NEO4J_SHA256} ${NEO4J_TARBALL}" | sha256sum -csw - \
&& tar --extract --file ${NEO4J_TARBALL} --directory /var/lib \
&& mv /var/lib/neo4j-* /var/lib/neo4j \
&& rm ${NEO4J_TARBALL}
@@ -15,7 +19,7 @@ RUN curl --fail --silent --show-error --location --remote-name ${NEO4J_URI} \
WORKDIR /var/lib/neo4j
RUN mv data /data \
- && ln --symbolic /data
+ && ln -s /data
VOLUME /data
diff --git a/neo4j_latest/docker-entrypoint.sh b/neo4j_latest/docker-entrypoint.sh
index c2c40b5..540cf82 100755
--- a/neo4j_latest/docker-entrypoint.sh
+++ b/neo4j_latest/docker-entrypoint.sh
@@ -3,16 +3,10 @@
setting() {
setting="${1}"
value="${2}"
- file="${3:-neo4j.conf}"
-
- if [ ! -f "conf/${file}" ]; then
- if [ -f "conf/neo4j.conf" ]; then
- file="neo4j.conf"
- fi
- fi
+ file="neo4j.conf"
if [ -n "${value}" ]; then
- if grep --quiet --fixed-strings "${setting}=" conf/"${file}"; then
+ if grep -q -F "${setting}=" conf/"${file}"; then
sed --in-place "s|.*${setting}=.*|${setting}=${value}|" conf/"${file}"
else
echo "${setting}=${value}" >>conf/"${file}"
@@ -23,9 +17,9 @@ setting() {
if [ "$1" == "neo4j" ]; then
setting "dbms.tx_log.rotation.retention_policy" "${NEO4J_dbms_txLog_rotation_retentionPolicy:-100M size}"
setting "dbms.memory.pagecache.size" "${NEO4J_dbms_memory_pagecache_size:-512M}"
- setting "wrapper.java.additional=-Dneo4j.ext.udc.source" "${NEO4J_UDC_SOURCE:-docker}" neo4j-wrapper.conf
- setting "dbms.memory.heap.initial_size" "${NEO4J_dbms_memory_heap_maxSize:-512}" neo4j-wrapper.conf
- setting "dbms.memory.heap.max_size" "${NEO4J_dbms_memory_heap_maxSize:-512}" neo4j-wrapper.conf
+ setting "wrapper.java.additional=-Dneo4j.ext.udc.source" "${NEO4J_UDC_SOURCE:-docker}"
+ setting "dbms.memory.heap.initial_size" "${NEO4J_dbms_memory_heap_maxSize:-512M}"
+ setting "dbms.memory.heap.max_size" "${NEO4J_dbms_memory_heap_maxSize:-512M}"
setting "dbms.unmanaged_extension_classes" "${NEO4J_dbms_unmanagedExtensionClasses:-}"
setting "dbms.allow_format_migration" "${NEO4J_dbms_allowFormatMigration:-}"
@@ -37,50 +31,27 @@ if [ "$1" == "neo4j" ]; then
echo "Invalid value for password. It cannot be 'neo4j', which is the default."
exit 1
fi
-
- setting "dbms.connector.http.address" "127.0.0.1:7474"
- setting "dbms.connector.https.address" "127.0.0.1:7473"
- setting "dbms.connector.bolt.address" "127.0.0.1:7687"
- bin/neo4j start || \
- (cat logs/neo4j.log && echo "Neo4j failed to start" && exit 1)
-
- end="$((SECONDS+100))"
- while true; do
- http_code="$(curl --silent --write-out %{http_code} --user "neo4j:${password}" --output /dev/null http://localhost:7474/db/data/ || true)"
-
- if [[ "${http_code}" = "200" ]]; then
- break;
- fi
-
- if [[ "${http_code}" = "401" ]]; then
- curl --fail --silent --show-error --user neo4j:neo4j \
- --data '{"password": "'"${password}"'"}' \
- --header 'Content-Type: application/json' \
- http://localhost:7474/user/neo4j/password
- break;
- fi
-
- if [[ "${SECONDS}" -ge "${end}" ]]; then
- (cat logs/neo4j.log && echo "Neo4j failed to start" && exit 1)
- fi
-
- sleep 1
- done
-
- bin/neo4j stop
+ bin/neo4j-admin set-initial-password "${password}"
elif [ -n "${NEO4J_AUTH:-}" ]; then
echo "Invalid value for NEO4J_AUTH: '${NEO4J_AUTH}'"
exit 1
fi
- setting "dbms.connector.http.address" "0.0.0.0:7474"
- setting "dbms.connector.https.address" "0.0.0.0:7473"
- setting "dbms.connector.bolt.address" "0.0.0.0:7687"
+ setting "dbms.connectors.default_listen_address" "0.0.0.0"
+ setting "dbms.connector.http.listen_address" "0.0.0.0:7474"
+ setting "dbms.connector.https.listen_address" "0.0.0.0:7473"
+ setting "dbms.connector.bolt.listen_address" "0.0.0.0:7687"
setting "dbms.mode" "${NEO4J_dbms_mode:-}"
+ setting "dbms.connectors.default_advertised_address" "${NEO4J_dbms_connectors_defaultAdvertisedAddress:-}"
setting "ha.server_id" "${NEO4J_ha_serverId:-}"
setting "ha.host.data" "${NEO4J_ha_host_data:-}"
setting "ha.host.coordination" "${NEO4J_ha_host_coordination:-}"
setting "ha.initial_hosts" "${NEO4J_ha_initialHosts:-}"
+ setting "causal_clustering.expected_core_cluster_size" "${NEO4J_causalClustering_expectedCoreClusterSize:-}"
+ setting "causal_clustering.initial_discovery_members" "${NEO4J_causalClustering_initialDiscoveryMembers:-}"
+ setting "causal_clustering.discovery_advertised_address" "${NEO4J_causalClustering_discoveryAdvertisedAddress:-$(hostname):5000}"
+ setting "causal_clustering.transaction_advertised_address" "${NEO4J_causalClustering_transactionAdvertisedAddress:-$(hostname):6000}"
+ setting "causal_clustering.raft_advertised_address" "${NEO4J_causalClustering_raftAdvertisedAddress:-$(hostname):7000}"
[ -f "${EXTENSION_SCRIPT:-}" ] && . ${EXTENSION_SCRIPT}
|
LGTM Build test of #2434; ff99214 ( $ bashbrew build neo4j:3.1.0
Building bashbrew/cache:f79121f9100da6e5adc0328a40823d209910127769067567e596a69961e65c50 (neo4j:3.1.0)
Tagging neo4j:3.1.0
Tagging neo4j:3.1
Tagging neo4j:latest
$ test/run.sh neo4j:3.1.0
testing neo4j:3.1.0
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build neo4j:3.1.0-enterprise
Building bashbrew/cache:cc40df548309ab45ef79701319fbde7bf3e1f9a32311c29ad4f888af6d6bd848 (neo4j:3.1.0-enterprise)
Tagging neo4j:3.1.0-enterprise
Tagging neo4j:3.1-enterprise
Tagging neo4j:enterprise
$ test/run.sh neo4j:3.1.0-enterprise
testing neo4j:3.1.0-enterprise
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build neo4j:3.0.7
Using bashbrew/cache:5c7124b4a52d936e4275216c37a4a8d8a83303ceffb92f096f4060d906ef1359 (neo4j:3.0.7)
Tagging neo4j:3.0.7
Tagging neo4j:3.0
$ test/run.sh neo4j:3.0.7
testing neo4j:3.0.7
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build neo4j:3.0.7-enterprise
Using bashbrew/cache:5e5be24a177d1907d815fa33d3201431268e3b21a300c1e01277a2ace47480aa (neo4j:3.0.7-enterprise)
Tagging neo4j:3.0.7-enterprise
Tagging neo4j:3.0-enterprise
$ test/run.sh neo4j:3.0.7-enterprise
testing neo4j:3.0.7-enterprise
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build neo4j:3.0.6
Using bashbrew/cache:263224d7eeedc3dd497b7e6e46da6c5e2368ac72ba06349d820cbd13397aafe7 (neo4j:3.0.6)
Tagging neo4j:3.0.6
$ test/run.sh neo4j:3.0.6
testing neo4j:3.0.6
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build neo4j:3.0.6-enterprise
Using bashbrew/cache:befd608724c1648c6eec28021273b579716a0665236b5016b87330259b8ab6e4 (neo4j:3.0.6-enterprise)
Tagging neo4j:3.0.6-enterprise
$ test/run.sh neo4j:3.0.6-enterprise
testing neo4j:3.0.6-enterprise
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build neo4j:3.0.5
Using bashbrew/cache:c04d2b0e52b5667e5f0b050726b243593010bf0d055dd3a679683cc227815100 (neo4j:3.0.5)
Tagging neo4j:3.0.5
$ test/run.sh neo4j:3.0.5
testing neo4j:3.0.5
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build neo4j:3.0.5-enterprise
Using bashbrew/cache:3c15fe34cf385f27c15ef8478f55ac31a8d652f85417f4354dca64400186b0b5 (neo4j:3.0.5-enterprise)
Tagging neo4j:3.0.5-enterprise
$ test/run.sh neo4j:3.0.5-enterprise
testing neo4j:3.0.5-enterprise
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build neo4j:3.0.4
Using bashbrew/cache:1cab577f29beae61cd4420c658cca455d892c5eb2011da53a702e0bfbd5acb42 (neo4j:3.0.4)
Tagging neo4j:3.0.4
$ test/run.sh neo4j:3.0.4
testing neo4j:3.0.4
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build neo4j:3.0.4-enterprise
Using bashbrew/cache:8b2f9a47f062178ca3225ca1335896b1b8cb38cb9357b03a2340d101b909a8cc (neo4j:3.0.4-enterprise)
Tagging neo4j:3.0.4-enterprise
$ test/run.sh neo4j:3.0.4-enterprise
testing neo4j:3.0.4-enterprise
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build neo4j:3.0.3
Using bashbrew/cache:39c7ea79b0f7e67a7d3d38a3f0956a883dc225f973740c97916b6c0f4220ff20 (neo4j:3.0.3)
Tagging neo4j:3.0.3
$ test/run.sh neo4j:3.0.3
testing neo4j:3.0.3
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build neo4j:3.0.3-enterprise
Using bashbrew/cache:b1bc1958093bde403b39d1fabc4706eb6577c61279b24ce2726413938d37f28a (neo4j:3.0.3-enterprise)
Tagging neo4j:3.0.3-enterprise
$ test/run.sh neo4j:3.0.3-enterprise
testing neo4j:3.0.3-enterprise
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build neo4j:3.0.2
Using bashbrew/cache:6748cdb3e62d282931da9cd2cf89ccc854d7a6fb55f0b414c3d9a7101533f3c1 (neo4j:3.0.2)
Tagging neo4j:3.0.2
$ test/run.sh neo4j:3.0.2
testing neo4j:3.0.2
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build neo4j:3.0.2-enterprise
Using bashbrew/cache:f65f5a2b469243f1bc58f7bbfca4d01455af016d149b1b5820daa007dec0d19f (neo4j:3.0.2-enterprise)
Tagging neo4j:3.0.2-enterprise
$ test/run.sh neo4j:3.0.2-enterprise
testing neo4j:3.0.2-enterprise
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build neo4j:3.0.1
Using bashbrew/cache:1845c511ca10794bdb43918ab3fc6c20822f13ec99e99349a964a5a83b295255 (neo4j:3.0.1)
Tagging neo4j:3.0.1
$ test/run.sh neo4j:3.0.1
testing neo4j:3.0.1
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build neo4j:3.0.1-enterprise
Using bashbrew/cache:cbd517b79b991036c46aefffbe3010aaba8ad6239867dd89ee79738e33e39aed (neo4j:3.0.1-enterprise)
Tagging neo4j:3.0.1-enterprise
$ test/run.sh neo4j:3.0.1-enterprise
testing neo4j:3.0.1-enterprise
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build neo4j:3.0.0
Using bashbrew/cache:38dc847f9d9b3ff5bc9b4cc585b0dc4f5de3a5fc0488ba59fc4732d6b07eda6a (neo4j:3.0.0)
Tagging neo4j:3.0.0
$ test/run.sh neo4j:3.0.0
testing neo4j:3.0.0
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build neo4j:3.0.0-enterprise
Using bashbrew/cache:6f6238384451c02f4daa40a27f2935562f4035083df5ea9257cadc0f8429ce57 (neo4j:3.0.0-enterprise)
Tagging neo4j:3.0.0-enterprise
$ test/run.sh neo4j:3.0.0-enterprise
testing neo4j:3.0.0-enterprise
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build neo4j:2.3.8
Using bashbrew/cache:746f63085f4ce614f88eda0abcdecf033ad69395c24292e74d96d2cfe8cf52fe (neo4j:2.3.8)
Tagging neo4j:2.3.8
Tagging neo4j:2.3
$ test/run.sh neo4j:2.3.8
testing neo4j:2.3.8
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build neo4j:2.3.8-enterprise
Using bashbrew/cache:2edc20d1f521207ef9f9dba46a92ac0e0889fe3ec69393486862b46a51a9c4ba (neo4j:2.3.8-enterprise)
Tagging neo4j:2.3.8-enterprise
Tagging neo4j:2.3-enterprise
$ test/run.sh neo4j:2.3.8-enterprise
testing neo4j:2.3.8-enterprise
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build neo4j:2.3.7
Using bashbrew/cache:79027160abbd9088514623f6c33b894e7100e5a5d3f9fccfa49e87868f250314 (neo4j:2.3.7)
Tagging neo4j:2.3.7
$ test/run.sh neo4j:2.3.7
testing neo4j:2.3.7
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build neo4j:2.3.7-enterprise
Using bashbrew/cache:f9e8a295426b4f713697cf2ead911f4632275a540cf7687a9ce32202fb172984 (neo4j:2.3.7-enterprise)
Tagging neo4j:2.3.7-enterprise
$ test/run.sh neo4j:2.3.7-enterprise
testing neo4j:2.3.7-enterprise
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build neo4j:2.3.6
Using bashbrew/cache:ae542fd4b5f8de4576be902804aee35702019cbd6cc73021377554ff37b48bec (neo4j:2.3.6)
Tagging neo4j:2.3.6
$ test/run.sh neo4j:2.3.6
testing neo4j:2.3.6
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build neo4j:2.3.6-enterprise
Using bashbrew/cache:02db522d752df377c8b14ebdb05fcbe10398c82b88a9a6c43378d4bece8b7e52 (neo4j:2.3.6-enterprise)
Tagging neo4j:2.3.6-enterprise
$ test/run.sh neo4j:2.3.6-enterprise
testing neo4j:2.3.6-enterprise
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build neo4j:2.3.5
Using bashbrew/cache:b0368dfcc7839640ff5937961f92baa0ae5eec24ee15373803b019707c26e795 (neo4j:2.3.5)
Tagging neo4j:2.3.5
$ test/run.sh neo4j:2.3.5
testing neo4j:2.3.5
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build neo4j:2.3.5-enterprise
Using bashbrew/cache:3614f8e5f36eb7a5ea762c0c12cf87dc9ed4f1dc9f9cb1ae8027d8bd5902802d (neo4j:2.3.5-enterprise)
Tagging neo4j:2.3.5-enterprise
$ test/run.sh neo4j:2.3.5-enterprise
testing neo4j:2.3.5-enterprise
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build neo4j:2.3.4
Using bashbrew/cache:84f58a121f54b879243cbdefd8dc9b69d793a83a4e868790ea935a31b34ee2f5 (neo4j:2.3.4)
Tagging neo4j:2.3.4
$ test/run.sh neo4j:2.3.4
testing neo4j:2.3.4
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build neo4j:2.3.4-enterprise
Using bashbrew/cache:32ac036de87eb72bd22d5ede85c8dcf23691f5a11829fcf9f8601cb0b573ca55 (neo4j:2.3.4-enterprise)
Tagging neo4j:2.3.4-enterprise
$ test/run.sh neo4j:2.3.4-enterprise
testing neo4j:2.3.4-enterprise
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build neo4j:2.3.3
Using bashbrew/cache:4b33c33ff074db419c12519cb3a46f3f11fa155e771b87fde4ba8eb7e88a44eb (neo4j:2.3.3)
Tagging neo4j:2.3.3
$ test/run.sh neo4j:2.3.3
testing neo4j:2.3.3
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build neo4j:2.3.3-enterprise
Using bashbrew/cache:78fca1c7e958f97f2e97bb1a977fc5f5cdd9d2cd9a2aa6c94fb9c9c850d9a913 (neo4j:2.3.3-enterprise)
Tagging neo4j:2.3.3-enterprise
$ test/run.sh neo4j:2.3.3-enterprise
testing neo4j:2.3.3-enterprise
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build neo4j:2.3.2
Using bashbrew/cache:fda81d8a0d7955b183c8ae161d059301423097248f574a46d3c858577838a0db (neo4j:2.3.2)
Tagging neo4j:2.3.2
$ test/run.sh neo4j:2.3.2
testing neo4j:2.3.2
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build neo4j:2.3.2-enterprise
Using bashbrew/cache:b5491d9e0784f09191cad5fa1658edefa5e7ebb899aa3cc9f84023382d3311a3 (neo4j:2.3.2-enterprise)
Tagging neo4j:2.3.2-enterprise
$ test/run.sh neo4j:2.3.2-enterprise
testing neo4j:2.3.2-enterprise
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build neo4j:2.3.1
Using bashbrew/cache:e40364b839de096bba416363f8fb864da7f173e4986eaf6a84457f5d807327d3 (neo4j:2.3.1)
Tagging neo4j:2.3.1
$ test/run.sh neo4j:2.3.1
testing neo4j:2.3.1
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build neo4j:2.3.1-enterprise
Using bashbrew/cache:a1639d3666e0e69909f229a39ab0a40a6eb6aa02f7e6f276463e0149dd676022 (neo4j:2.3.1-enterprise)
Tagging neo4j:2.3.1-enterprise
$ test/run.sh neo4j:2.3.1-enterprise
testing neo4j:2.3.1-enterprise
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build neo4j:2.3.0
Using bashbrew/cache:a030223dbc61130977cc6b80cfc49d1d0a7ec8f75dbeda2c0240f0bd16493c6e (neo4j:2.3.0)
Tagging neo4j:2.3.0
$ test/run.sh neo4j:2.3.0
testing neo4j:2.3.0
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build neo4j:2.3.0-enterprise
Using bashbrew/cache:999b011711c1e8d69729ee410f173e00a68b6a34e19bb2687253c9ababd9ad66 (neo4j:2.3.0-enterprise)
Tagging neo4j:2.3.0-enterprise
$ test/run.sh neo4j:2.3.0-enterprise
testing neo4j:2.3.0-enterprise
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
|
@tianon Thanks! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.