Skip to content
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.0.5 and 3.0.6 #2155

Merged
merged 1 commit into from
Sep 19, 2016
Merged

Publish Neo4j 3.0.5 and 3.0.6 #2155

merged 1 commit into from
Sep 19, 2016

Conversation

spacecowboy
Copy link
Contributor

No description provided.

@tianon
Copy link
Member

tianon commented Sep 19, 2016

diff --git a/neo4j_enterprise/Dockerfile b/neo4j_3.0.4-enterprise/Dockerfile
similarity index 100%
copy from neo4j_enterprise/Dockerfile
copy to neo4j_3.0.4-enterprise/Dockerfile
diff --git a/neo4j_latest/docker-entrypoint.sh b/neo4j_3.0.4-enterprise/docker-entrypoint.sh
similarity index 100%
copy from neo4j_latest/docker-entrypoint.sh
copy to neo4j_3.0.4-enterprise/docker-entrypoint.sh
diff --git a/neo4j_latest/Dockerfile b/neo4j_3.0.4/Dockerfile
similarity index 100%
copy from neo4j_latest/Dockerfile
copy to neo4j_3.0.4/Dockerfile
diff --git a/neo4j_latest/docker-entrypoint.sh b/neo4j_3.0.4/docker-entrypoint.sh
similarity index 100%
copy from neo4j_latest/docker-entrypoint.sh
copy to neo4j_3.0.4/docker-entrypoint.sh
diff --git a/neo4j_3.0.0-enterprise/Dockerfile b/neo4j_3.0.5-enterprise/Dockerfile
similarity index 74%
copy from neo4j_3.0.0-enterprise/Dockerfile
copy to neo4j_3.0.5-enterprise/Dockerfile
index 308c03d..62a73e3 100644
--- a/neo4j_3.0.0-enterprise/Dockerfile
+++ b/neo4j_3.0.5-enterprise/Dockerfile
@@ -1,8 +1,8 @@
 FROM java:openjdk-8-jre

-ENV NEO4J_SHA256 376409e1849f2f13d5ea6ddc672b535646ffb9a24527520b661e044190bf617a
-ENV NEO4J_TARBALL neo4j-enterprise-3.0.0-unix.tar.gz
-ARG NEO4J_URI=http://dist.neo4j.org/neo4j-enterprise-3.0.0-unix.tar.gz
+ENV NEO4J_SHA256 069cd8b1eab4e4b20e4abb50a6f1e7c985a21ad349d3fe3413943b96f1724e06
+ENV NEO4J_TARBALL neo4j-enterprise-3.0.5-unix.tar.gz
+ARG NEO4J_URI=http://dist.neo4j.org/neo4j-enterprise-3.0.5-unix.tar.gz

 COPY ./local-package/* /tmp/

diff --git a/neo4j_3.0.1-enterprise/docker-entrypoint.sh b/neo4j_3.0.5-enterprise/docker-entrypoint.sh
similarity index 91%
copy from neo4j_3.0.1-enterprise/docker-entrypoint.sh
copy to neo4j_3.0.5-enterprise/docker-entrypoint.sh
index 03df07c..83eb773 100755
--- a/neo4j_3.0.1-enterprise/docker-entrypoint.sh
+++ b/neo4j_3.0.5-enterprise/docker-entrypoint.sh
@@ -12,7 +12,11 @@ setting() {
     fi

     if [ -n "${value}" ]; then
-        sed --in-place "s|.*${setting}=.*|${setting}=${value}|" conf/"${file}"
+        if grep --quiet --fixed-strings "${setting}=" conf/"${file}"; then
+            sed --in-place "s|.*${setting}=.*|${setting}=${value}|" conf/"${file}"
+        else
+            echo "${setting}=${value}" >>conf/"${file}"
+        fi
     fi
 }

@@ -89,6 +93,10 @@ if [ "$1" == "neo4j" ]; then
         setting "dbms.directories.plugins" "/plugins" neo4j.conf
     fi

+    if [ -d /logs ]; then
+        setting "dbms.directories.logs" "/logs" neo4j.conf
+    fi
+
     exec bin/neo4j console
 elif [ "$1" == "dump-config" ]; then
     if [ -d /conf ]; then
diff --git a/neo4j_3.0.3/local-package/.sentinel b/neo4j_3.0.5-enterprise/local-package/.sentinel
similarity index 100%
copy from neo4j_3.0.3/local-package/.sentinel
copy to neo4j_3.0.5-enterprise/local-package/.sentinel
diff --git a/neo4j_3.0.2/Dockerfile b/neo4j_3.0.5/Dockerfile
similarity index 74%
copy from neo4j_3.0.2/Dockerfile
copy to neo4j_3.0.5/Dockerfile
index 0e73766..4e64448 100644
--- a/neo4j_3.0.2/Dockerfile
+++ b/neo4j_3.0.5/Dockerfile
@@ -1,8 +1,8 @@
 FROM java:openjdk-8-jre

-ENV NEO4J_SHA256 3daac469e0ad0f74eb8532ada8019b418e6ebd88da9bac52a4ee3393e18086aa
-ENV NEO4J_TARBALL neo4j-community-3.0.2-unix.tar.gz
-ARG NEO4J_URI=http://dist.neo4j.org/neo4j-community-3.0.2-unix.tar.gz
+ENV NEO4J_SHA256 65f6995f9d2e87b61cb8d9c7623e9861bced555a8c05f3476aa73240a77437d8
+ENV NEO4J_TARBALL neo4j-community-3.0.5-unix.tar.gz
+ARG NEO4J_URI=http://dist.neo4j.org/neo4j-community-3.0.5-unix.tar.gz

 COPY ./local-package/* /tmp/

diff --git a/neo4j_3.0.1-enterprise/docker-entrypoint.sh b/neo4j_3.0.5/docker-entrypoint.sh
similarity index 91%
copy from neo4j_3.0.1-enterprise/docker-entrypoint.sh
copy to neo4j_3.0.5/docker-entrypoint.sh
index 03df07c..83eb773 100755
--- a/neo4j_3.0.1-enterprise/docker-entrypoint.sh
+++ b/neo4j_3.0.5/docker-entrypoint.sh
@@ -12,7 +12,11 @@ setting() {
     fi

     if [ -n "${value}" ]; then
-        sed --in-place "s|.*${setting}=.*|${setting}=${value}|" conf/"${file}"
+        if grep --quiet --fixed-strings "${setting}=" conf/"${file}"; then
+            sed --in-place "s|.*${setting}=.*|${setting}=${value}|" conf/"${file}"
+        else
+            echo "${setting}=${value}" >>conf/"${file}"
+        fi
     fi
 }

@@ -89,6 +93,10 @@ if [ "$1" == "neo4j" ]; then
         setting "dbms.directories.plugins" "/plugins" neo4j.conf
     fi

+    if [ -d /logs ]; then
+        setting "dbms.directories.logs" "/logs" neo4j.conf
+    fi
+
     exec bin/neo4j console
 elif [ "$1" == "dump-config" ]; then
     if [ -d /conf ]; then
diff --git a/neo4j_3.0.3/local-package/.sentinel b/neo4j_3.0.5/local-package/.sentinel
similarity index 100%
copy from neo4j_3.0.3/local-package/.sentinel
copy to neo4j_3.0.5/local-package/.sentinel
diff --git a/neo4j_enterprise/Dockerfile b/neo4j_enterprise/Dockerfile
index 634b41c..c76af61 100644
--- a/neo4j_enterprise/Dockerfile
+++ b/neo4j_enterprise/Dockerfile
@@ -1,15 +1,16 @@
 FROM java:openjdk-8-jre

-ENV NEO4J_SHA256 7cc47dcffdd040beec230cb6633bf03ace326218fa70f6d90612de057a6d61e2
-ENV NEO4J_URI http://dist.neo4j.org/neo4j-enterprise-3.0.4-unix.tar.gz
+ENV NEO4J_SHA256 f58450760a92b0913c5418e26278a6a65bf6c5ba01f9b12a033f56e80f0c3d23
+ENV NEO4J_TARBALL neo4j-enterprise-3.0.6-unix.tar.gz
+ARG NEO4J_URI=http://dist.neo4j.org/neo4j-enterprise-3.0.6-unix.tar.gz

+COPY ./local-package/* /tmp/

-
-RUN curl --fail --silent --show-error --location --output neo4j.tar.gz $NEO4J_URI \
-    && echo "$NEO4J_SHA256 neo4j.tar.gz" | sha256sum --check --quiet - \
-    && tar --extract --file neo4j.tar.gz --directory /var/lib \
+RUN curl --fail --silent --show-error --location --remote-name ${NEO4J_URI} \
+    && echo "${NEO4J_SHA256} ${NEO4J_TARBALL}" | sha256sum --check --quiet - \
+    && tar --extract --file ${NEO4J_TARBALL} --directory /var/lib \
     && mv /var/lib/neo4j-* /var/lib/neo4j \
-    && rm neo4j.tar.gz
+    && rm ${NEO4J_TARBALL}

 WORKDIR /var/lib/neo4j

diff --git a/neo4j_enterprise/docker-entrypoint.sh b/neo4j_enterprise/docker-entrypoint.sh
index 03df07c..83eb773 100755
--- a/neo4j_enterprise/docker-entrypoint.sh
+++ b/neo4j_enterprise/docker-entrypoint.sh
@@ -12,7 +12,11 @@ setting() {
     fi

     if [ -n "${value}" ]; then
-        sed --in-place "s|.*${setting}=.*|${setting}=${value}|" conf/"${file}"
+        if grep --quiet --fixed-strings "${setting}=" conf/"${file}"; then
+            sed --in-place "s|.*${setting}=.*|${setting}=${value}|" conf/"${file}"
+        else
+            echo "${setting}=${value}" >>conf/"${file}"
+        fi
     fi
 }

@@ -89,6 +93,10 @@ if [ "$1" == "neo4j" ]; then
         setting "dbms.directories.plugins" "/plugins" neo4j.conf
     fi

+    if [ -d /logs ]; then
+        setting "dbms.directories.logs" "/logs" neo4j.conf
+    fi
+
     exec bin/neo4j console
 elif [ "$1" == "dump-config" ]; then
     if [ -d /conf ]; then
diff --git a/neo4j_3.0.3/local-package/.sentinel b/neo4j_enterprise/local-package/.sentinel
similarity index 100%
copy from neo4j_3.0.3/local-package/.sentinel
copy to neo4j_enterprise/local-package/.sentinel
diff --git a/neo4j_latest/Dockerfile b/neo4j_latest/Dockerfile
index 934ab93..8c25db8 100644
--- a/neo4j_latest/Dockerfile
+++ b/neo4j_latest/Dockerfile
@@ -1,15 +1,16 @@
 FROM java:openjdk-8-jre

-ENV NEO4J_SHA256 e1da51163eb18380623788eabea34dfe23ee21c99deca4e7922094b0d242e805
-ENV NEO4J_URI http://dist.neo4j.org/neo4j-community-3.0.4-unix.tar.gz
+ENV NEO4J_SHA256 efeab41183e9e5fa94a2d396c65ea93a24e9f105cb3b5f0d0a8e42fb709f4660
+ENV NEO4J_TARBALL neo4j-community-3.0.6-unix.tar.gz
+ARG NEO4J_URI=http://dist.neo4j.org/neo4j-community-3.0.6-unix.tar.gz

+COPY ./local-package/* /tmp/

-
-RUN curl --fail --silent --show-error --location --output neo4j.tar.gz $NEO4J_URI \
-    && echo "$NEO4J_SHA256 neo4j.tar.gz" | sha256sum --check --quiet - \
-    && tar --extract --file neo4j.tar.gz --directory /var/lib \
+RUN curl --fail --silent --show-error --location --remote-name ${NEO4J_URI} \
+    && echo "${NEO4J_SHA256} ${NEO4J_TARBALL}" | sha256sum --check --quiet - \
+    && tar --extract --file ${NEO4J_TARBALL} --directory /var/lib \
     && mv /var/lib/neo4j-* /var/lib/neo4j \
-    && rm neo4j.tar.gz
+    && rm ${NEO4J_TARBALL}

 WORKDIR /var/lib/neo4j

diff --git a/neo4j_latest/docker-entrypoint.sh b/neo4j_latest/docker-entrypoint.sh
index 03df07c..83eb773 100755
--- a/neo4j_latest/docker-entrypoint.sh
+++ b/neo4j_latest/docker-entrypoint.sh
@@ -12,7 +12,11 @@ setting() {
     fi

     if [ -n "${value}" ]; then
-        sed --in-place "s|.*${setting}=.*|${setting}=${value}|" conf/"${file}"
+        if grep --quiet --fixed-strings "${setting}=" conf/"${file}"; then
+            sed --in-place "s|.*${setting}=.*|${setting}=${value}|" conf/"${file}"
+        else
+            echo "${setting}=${value}" >>conf/"${file}"
+        fi
     fi
 }

@@ -89,6 +93,10 @@ if [ "$1" == "neo4j" ]; then
         setting "dbms.directories.plugins" "/plugins" neo4j.conf
     fi

+    if [ -d /logs ]; then
+        setting "dbms.directories.logs" "/logs" neo4j.conf
+    fi
+
     exec bin/neo4j console
 elif [ "$1" == "dump-config" ]; then
     if [ -d /conf ]; then
diff --git a/neo4j_3.0.3/local-package/.sentinel b/neo4j_latest/local-package/.sentinel
similarity index 100%
copy from neo4j_3.0.3/local-package/.sentinel
copy to neo4j_latest/local-package/.sentinel

@tianon
Copy link
Member

tianon commented Sep 19, 2016

LGTM

Build test of #2155; 3b5399e (neo4j):

$ bashbrew build neo4j:3.0.6
Building bashbrew/cache:57422d7094f214642fd005d7d4377384d9cc9d4373c75520b157cec3272d78a4 (neo4j:3.0.6)
Tagging neo4j:3.0.6
Tagging neo4j:3.0
Tagging neo4j:latest

$ 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
Building bashbrew/cache:c4df202c5732f346d2e94871880a59a8f4bf604118438a7d53bc54a47fe95dc9 (neo4j:3.0.6-enterprise)
Tagging neo4j:3.0.6-enterprise
Tagging neo4j:3.0-enterprise
Tagging neo4j: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
Building bashbrew/cache:0bd2fe2b6e3b97c42c0ea8988cbb17667efd4b3755c677c1c92c6b09b8dc7add (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
Building bashbrew/cache:308c6cd28c45c646d3158d67f993b41d0ec874f3b2d2bb4e9ab2a076d7a82b30 (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:ad8cb0749eb5b271b6c5b815d8c33980e46ddde0cd629091ecdb165f2a435c30 (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:9530a984b816ba31c1291c4299a8ae5c7450bf550fc3b20c59401af9bc7788aa (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:0dd11af9b14912838bf5e93464fb314a8179126f96a3cb8da1437b2b303563a9 (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:5cd35a8bce5581fd62176f6f684c30b4e6d631852cf7098b1db68412c7df74ae (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:46bfa787d4ae870a8ec6ab4ddf096e7537d627325f5d1e6287c3552585aa387c (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:2a4f12beb73cfbdd57696e79051dfd494efe45e6a42ce0791696ad051aeef4a4 (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:6479be3a602bf141fd5213de7fc1599401c4e8470e0829dce8a89c9a4e904801 (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:fc119fc27108e8fad30e89964d781b441a3b66173a06f6b352a45166a39b5a62 (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:d016dbfd0bd94d42decdbe3966ef5f427b2f94d219bb91102f96df4aaa08db95 (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:f12f8cf66c63ce897c2e24d124a6c10e9aced80d9361a0af82f8b30d43342b94 (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.6
Using bashbrew/cache:a8de2eea91c98305e2f8cc28ccedb001847be1f9c19d10a89df52f9575c72952 (neo4j:2.3.6)
Tagging neo4j:2.3.6
Tagging neo4j:2.3

$ 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:4dfe0b4c2719ddf6fb4d5f6019cef9eb5e2ddace59694d3b6f8d9f60de3d6d39 (neo4j:2.3.6-enterprise)
Tagging neo4j:2.3.6-enterprise
Tagging neo4j:2.3-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:1c61882d6f4953c594aeaee90df7ad9a229b880806483bf976c9f8953064d4cb (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:9b91c61664af0e893c16857dcec6e93c9b3cc923837e12db4e14507e0a9b24bb (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:508d3463bc3691527891fb34a3bdd58b1d59e65e5fda58ee80a0155ac9415555 (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:5f308a1f8b6ed22a457932a6a257d91ff8d86f39b76b941208e64cb92761326d (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:ce29c52ebf1f52db1d3ea88d1ef9cb74a96df9c2f992fbb5334184f6c295e6a9 (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:8004321785ca71affb480d280fdcdf44bc97453a259f6232c6543b258759c618 (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:f4949eece523b83a89d26a4525b7be773f960930a81917d0c43dcc08306c2fb8 (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:0351f0d18ef7689d3a22239eff9c63eda28e80942596bc2029d56c9d30acc8b3 (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:88ed8da3d8f7d75f23874f5bb74d492347e4ed752328e538f37e1d903df0f3bf (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:db4772a4a0c641c062a70246a3c917770c2b9a182bdb583b7dce064d934c4bfa (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:3d325e27cdc9d16e3e48b709810a93e693787a46685a99862cbccdf75c5e98c6 (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:c6cc7652f199478e25671167dcc2f48be7640b8a21a8fbdf73d982a1d028eaf0 (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

cc @yosifkit

@yosifkit yosifkit merged commit ce89f4b into docker-library:master Sep 19, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants