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

Update nextcloud image #6615

Merged
merged 1 commit into from
Sep 10, 2019
Merged

Conversation

tilosp-bot
Copy link
Contributor

@yosifkit
Copy link
Member

Diff:
diff --git a/nextcloud_14-fpm-alpine/config/redis.config.php b/nextcloud_14-fpm-alpine/config/redis.config.php
index 5df799f..1967616 100644
--- a/nextcloud_14-fpm-alpine/config/redis.config.php
+++ b/nextcloud_14-fpm-alpine/config/redis.config.php
@@ -6,6 +6,7 @@ if (getenv('REDIS_HOST')) {
     'redis' => array(
       'host' => getenv('REDIS_HOST'),
       'port' => getenv('REDIS_HOST_PORT') ?: 6379,
+      'password' => getenv('REDIS_HOST_PASSWORD'),
     ),
   );
 }
diff --git a/nextcloud_14-fpm-alpine/entrypoint.sh b/nextcloud_14-fpm-alpine/entrypoint.sh
index 0be9d28..9514d88 100755
--- a/nextcloud_14-fpm-alpine/entrypoint.sh
+++ b/nextcloud_14-fpm-alpine/entrypoint.sh
@@ -25,7 +25,12 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ] || [ "${NEXTCLOUD_UP
         echo "Configuring Redis as session handler"
         {
             echo 'session.save_handler = redis'
+            # check if redis password has been set
+            if [ -n "${REDIS_HOST_PASSWORD+x}" ]; then
+                echo "session.save_path = \"tcp://${REDIS_HOST}:${REDIS_HOST_PORT:=6379}?auth=${REDIS_HOST_PASSWORD}\""
+            else
                 echo "session.save_path = \"tcp://${REDIS_HOST}:${REDIS_HOST_PORT:=6379}\""
+            fi
         } > /usr/local/etc/php/conf.d/redis-session.ini
     fi
 
diff --git a/nextcloud_14-fpm/config/redis.config.php b/nextcloud_14-fpm/config/redis.config.php
index 5df799f..1967616 100644
--- a/nextcloud_14-fpm/config/redis.config.php
+++ b/nextcloud_14-fpm/config/redis.config.php
@@ -6,6 +6,7 @@ if (getenv('REDIS_HOST')) {
     'redis' => array(
       'host' => getenv('REDIS_HOST'),
       'port' => getenv('REDIS_HOST_PORT') ?: 6379,
+      'password' => getenv('REDIS_HOST_PASSWORD'),
     ),
   );
 }
diff --git a/nextcloud_14-fpm/entrypoint.sh b/nextcloud_14-fpm/entrypoint.sh
index 0be9d28..9514d88 100755
--- a/nextcloud_14-fpm/entrypoint.sh
+++ b/nextcloud_14-fpm/entrypoint.sh
@@ -25,7 +25,12 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ] || [ "${NEXTCLOUD_UP
         echo "Configuring Redis as session handler"
         {
             echo 'session.save_handler = redis'
+            # check if redis password has been set
+            if [ -n "${REDIS_HOST_PASSWORD+x}" ]; then
+                echo "session.save_path = \"tcp://${REDIS_HOST}:${REDIS_HOST_PORT:=6379}?auth=${REDIS_HOST_PASSWORD}\""
+            else
                 echo "session.save_path = \"tcp://${REDIS_HOST}:${REDIS_HOST_PORT:=6379}\""
+            fi
         } > /usr/local/etc/php/conf.d/redis-session.ini
     fi
 
diff --git a/nextcloud_14/config/redis.config.php b/nextcloud_14/config/redis.config.php
index 5df799f..1967616 100644
--- a/nextcloud_14/config/redis.config.php
+++ b/nextcloud_14/config/redis.config.php
@@ -6,6 +6,7 @@ if (getenv('REDIS_HOST')) {
     'redis' => array(
       'host' => getenv('REDIS_HOST'),
       'port' => getenv('REDIS_HOST_PORT') ?: 6379,
+      'password' => getenv('REDIS_HOST_PASSWORD'),
     ),
   );
 }
diff --git a/nextcloud_14/entrypoint.sh b/nextcloud_14/entrypoint.sh
index 0be9d28..9514d88 100755
--- a/nextcloud_14/entrypoint.sh
+++ b/nextcloud_14/entrypoint.sh
@@ -25,7 +25,12 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ] || [ "${NEXTCLOUD_UP
         echo "Configuring Redis as session handler"
         {
             echo 'session.save_handler = redis'
+            # check if redis password has been set
+            if [ -n "${REDIS_HOST_PASSWORD+x}" ]; then
+                echo "session.save_path = \"tcp://${REDIS_HOST}:${REDIS_HOST_PORT:=6379}?auth=${REDIS_HOST_PASSWORD}\""
+            else
                 echo "session.save_path = \"tcp://${REDIS_HOST}:${REDIS_HOST_PORT:=6379}\""
+            fi
         } > /usr/local/etc/php/conf.d/redis-session.ini
     fi
 
diff --git a/nextcloud_15-fpm-alpine/config/redis.config.php b/nextcloud_15-fpm-alpine/config/redis.config.php
index 5df799f..1967616 100644
--- a/nextcloud_15-fpm-alpine/config/redis.config.php
+++ b/nextcloud_15-fpm-alpine/config/redis.config.php
@@ -6,6 +6,7 @@ if (getenv('REDIS_HOST')) {
     'redis' => array(
       'host' => getenv('REDIS_HOST'),
       'port' => getenv('REDIS_HOST_PORT') ?: 6379,
+      'password' => getenv('REDIS_HOST_PASSWORD'),
     ),
   );
 }
diff --git a/nextcloud_15-fpm-alpine/entrypoint.sh b/nextcloud_15-fpm-alpine/entrypoint.sh
index 0be9d28..9514d88 100755
--- a/nextcloud_15-fpm-alpine/entrypoint.sh
+++ b/nextcloud_15-fpm-alpine/entrypoint.sh
@@ -25,7 +25,12 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ] || [ "${NEXTCLOUD_UP
         echo "Configuring Redis as session handler"
         {
             echo 'session.save_handler = redis'
+            # check if redis password has been set
+            if [ -n "${REDIS_HOST_PASSWORD+x}" ]; then
+                echo "session.save_path = \"tcp://${REDIS_HOST}:${REDIS_HOST_PORT:=6379}?auth=${REDIS_HOST_PASSWORD}\""
+            else
                 echo "session.save_path = \"tcp://${REDIS_HOST}:${REDIS_HOST_PORT:=6379}\""
+            fi
         } > /usr/local/etc/php/conf.d/redis-session.ini
     fi
 
diff --git a/nextcloud_15-fpm/config/redis.config.php b/nextcloud_15-fpm/config/redis.config.php
index 5df799f..1967616 100644
--- a/nextcloud_15-fpm/config/redis.config.php
+++ b/nextcloud_15-fpm/config/redis.config.php
@@ -6,6 +6,7 @@ if (getenv('REDIS_HOST')) {
     'redis' => array(
       'host' => getenv('REDIS_HOST'),
       'port' => getenv('REDIS_HOST_PORT') ?: 6379,
+      'password' => getenv('REDIS_HOST_PASSWORD'),
     ),
   );
 }
diff --git a/nextcloud_15-fpm/entrypoint.sh b/nextcloud_15-fpm/entrypoint.sh
index 0be9d28..9514d88 100755
--- a/nextcloud_15-fpm/entrypoint.sh
+++ b/nextcloud_15-fpm/entrypoint.sh
@@ -25,7 +25,12 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ] || [ "${NEXTCLOUD_UP
         echo "Configuring Redis as session handler"
         {
             echo 'session.save_handler = redis'
+            # check if redis password has been set
+            if [ -n "${REDIS_HOST_PASSWORD+x}" ]; then
+                echo "session.save_path = \"tcp://${REDIS_HOST}:${REDIS_HOST_PORT:=6379}?auth=${REDIS_HOST_PASSWORD}\""
+            else
                 echo "session.save_path = \"tcp://${REDIS_HOST}:${REDIS_HOST_PORT:=6379}\""
+            fi
         } > /usr/local/etc/php/conf.d/redis-session.ini
     fi
 
diff --git a/nextcloud_15/config/redis.config.php b/nextcloud_15/config/redis.config.php
index 5df799f..1967616 100644
--- a/nextcloud_15/config/redis.config.php
+++ b/nextcloud_15/config/redis.config.php
@@ -6,6 +6,7 @@ if (getenv('REDIS_HOST')) {
     'redis' => array(
       'host' => getenv('REDIS_HOST'),
       'port' => getenv('REDIS_HOST_PORT') ?: 6379,
+      'password' => getenv('REDIS_HOST_PASSWORD'),
     ),
   );
 }
diff --git a/nextcloud_15/entrypoint.sh b/nextcloud_15/entrypoint.sh
index 0be9d28..9514d88 100755
--- a/nextcloud_15/entrypoint.sh
+++ b/nextcloud_15/entrypoint.sh
@@ -25,7 +25,12 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ] || [ "${NEXTCLOUD_UP
         echo "Configuring Redis as session handler"
         {
             echo 'session.save_handler = redis'
+            # check if redis password has been set
+            if [ -n "${REDIS_HOST_PASSWORD+x}" ]; then
+                echo "session.save_path = \"tcp://${REDIS_HOST}:${REDIS_HOST_PORT:=6379}?auth=${REDIS_HOST_PASSWORD}\""
+            else
                 echo "session.save_path = \"tcp://${REDIS_HOST}:${REDIS_HOST_PORT:=6379}\""
+            fi
         } > /usr/local/etc/php/conf.d/redis-session.ini
     fi
 
diff --git a/nextcloud_17-beta-fpm-alpine/config/redis.config.php b/nextcloud_17-beta-fpm-alpine/config/redis.config.php
index 5df799f..1967616 100644
--- a/nextcloud_17-beta-fpm-alpine/config/redis.config.php
+++ b/nextcloud_17-beta-fpm-alpine/config/redis.config.php
@@ -6,6 +6,7 @@ if (getenv('REDIS_HOST')) {
     'redis' => array(
       'host' => getenv('REDIS_HOST'),
       'port' => getenv('REDIS_HOST_PORT') ?: 6379,
+      'password' => getenv('REDIS_HOST_PASSWORD'),
     ),
   );
 }
diff --git a/nextcloud_17-beta-fpm-alpine/entrypoint.sh b/nextcloud_17-beta-fpm-alpine/entrypoint.sh
index 0be9d28..9514d88 100755
--- a/nextcloud_17-beta-fpm-alpine/entrypoint.sh
+++ b/nextcloud_17-beta-fpm-alpine/entrypoint.sh
@@ -25,7 +25,12 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ] || [ "${NEXTCLOUD_UP
         echo "Configuring Redis as session handler"
         {
             echo 'session.save_handler = redis'
+            # check if redis password has been set
+            if [ -n "${REDIS_HOST_PASSWORD+x}" ]; then
+                echo "session.save_path = \"tcp://${REDIS_HOST}:${REDIS_HOST_PORT:=6379}?auth=${REDIS_HOST_PASSWORD}\""
+            else
                 echo "session.save_path = \"tcp://${REDIS_HOST}:${REDIS_HOST_PORT:=6379}\""
+            fi
         } > /usr/local/etc/php/conf.d/redis-session.ini
     fi
 
diff --git a/nextcloud_17-beta-fpm/config/redis.config.php b/nextcloud_17-beta-fpm/config/redis.config.php
index 5df799f..1967616 100644
--- a/nextcloud_17-beta-fpm/config/redis.config.php
+++ b/nextcloud_17-beta-fpm/config/redis.config.php
@@ -6,6 +6,7 @@ if (getenv('REDIS_HOST')) {
     'redis' => array(
       'host' => getenv('REDIS_HOST'),
       'port' => getenv('REDIS_HOST_PORT') ?: 6379,
+      'password' => getenv('REDIS_HOST_PASSWORD'),
     ),
   );
 }
diff --git a/nextcloud_17-beta-fpm/entrypoint.sh b/nextcloud_17-beta-fpm/entrypoint.sh
index 0be9d28..9514d88 100755
--- a/nextcloud_17-beta-fpm/entrypoint.sh
+++ b/nextcloud_17-beta-fpm/entrypoint.sh
@@ -25,7 +25,12 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ] || [ "${NEXTCLOUD_UP
         echo "Configuring Redis as session handler"
         {
             echo 'session.save_handler = redis'
+            # check if redis password has been set
+            if [ -n "${REDIS_HOST_PASSWORD+x}" ]; then
+                echo "session.save_path = \"tcp://${REDIS_HOST}:${REDIS_HOST_PORT:=6379}?auth=${REDIS_HOST_PASSWORD}\""
+            else
                 echo "session.save_path = \"tcp://${REDIS_HOST}:${REDIS_HOST_PORT:=6379}\""
+            fi
         } > /usr/local/etc/php/conf.d/redis-session.ini
     fi
 
diff --git a/nextcloud_17-beta/config/redis.config.php b/nextcloud_17-beta/config/redis.config.php
index 5df799f..1967616 100644
--- a/nextcloud_17-beta/config/redis.config.php
+++ b/nextcloud_17-beta/config/redis.config.php
@@ -6,6 +6,7 @@ if (getenv('REDIS_HOST')) {
     'redis' => array(
       'host' => getenv('REDIS_HOST'),
       'port' => getenv('REDIS_HOST_PORT') ?: 6379,
+      'password' => getenv('REDIS_HOST_PASSWORD'),
     ),
   );
 }
diff --git a/nextcloud_17-beta/entrypoint.sh b/nextcloud_17-beta/entrypoint.sh
index 0be9d28..9514d88 100755
--- a/nextcloud_17-beta/entrypoint.sh
+++ b/nextcloud_17-beta/entrypoint.sh
@@ -25,7 +25,12 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ] || [ "${NEXTCLOUD_UP
         echo "Configuring Redis as session handler"
         {
             echo 'session.save_handler = redis'
+            # check if redis password has been set
+            if [ -n "${REDIS_HOST_PASSWORD+x}" ]; then
+                echo "session.save_path = \"tcp://${REDIS_HOST}:${REDIS_HOST_PORT:=6379}?auth=${REDIS_HOST_PASSWORD}\""
+            else
                 echo "session.save_path = \"tcp://${REDIS_HOST}:${REDIS_HOST_PORT:=6379}\""
+            fi
         } > /usr/local/etc/php/conf.d/redis-session.ini
     fi
 
diff --git a/nextcloud_production-fpm-alpine/config/redis.config.php b/nextcloud_production-fpm-alpine/config/redis.config.php
index 5df799f..1967616 100644
--- a/nextcloud_production-fpm-alpine/config/redis.config.php
+++ b/nextcloud_production-fpm-alpine/config/redis.config.php
@@ -6,6 +6,7 @@ if (getenv('REDIS_HOST')) {
     'redis' => array(
       'host' => getenv('REDIS_HOST'),
       'port' => getenv('REDIS_HOST_PORT') ?: 6379,
+      'password' => getenv('REDIS_HOST_PASSWORD'),
     ),
   );
 }
diff --git a/nextcloud_production-fpm-alpine/entrypoint.sh b/nextcloud_production-fpm-alpine/entrypoint.sh
index 0be9d28..9514d88 100755
--- a/nextcloud_production-fpm-alpine/entrypoint.sh
+++ b/nextcloud_production-fpm-alpine/entrypoint.sh
@@ -25,7 +25,12 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ] || [ "${NEXTCLOUD_UP
         echo "Configuring Redis as session handler"
         {
             echo 'session.save_handler = redis'
+            # check if redis password has been set
+            if [ -n "${REDIS_HOST_PASSWORD+x}" ]; then
+                echo "session.save_path = \"tcp://${REDIS_HOST}:${REDIS_HOST_PORT:=6379}?auth=${REDIS_HOST_PASSWORD}\""
+            else
                 echo "session.save_path = \"tcp://${REDIS_HOST}:${REDIS_HOST_PORT:=6379}\""
+            fi
         } > /usr/local/etc/php/conf.d/redis-session.ini
     fi
 
diff --git a/nextcloud_production-fpm/config/redis.config.php b/nextcloud_production-fpm/config/redis.config.php
index 5df799f..1967616 100644
--- a/nextcloud_production-fpm/config/redis.config.php
+++ b/nextcloud_production-fpm/config/redis.config.php
@@ -6,6 +6,7 @@ if (getenv('REDIS_HOST')) {
     'redis' => array(
       'host' => getenv('REDIS_HOST'),
       'port' => getenv('REDIS_HOST_PORT') ?: 6379,
+      'password' => getenv('REDIS_HOST_PASSWORD'),
     ),
   );
 }
diff --git a/nextcloud_production-fpm/entrypoint.sh b/nextcloud_production-fpm/entrypoint.sh
index 0be9d28..9514d88 100755
--- a/nextcloud_production-fpm/entrypoint.sh
+++ b/nextcloud_production-fpm/entrypoint.sh
@@ -25,7 +25,12 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ] || [ "${NEXTCLOUD_UP
         echo "Configuring Redis as session handler"
         {
             echo 'session.save_handler = redis'
+            # check if redis password has been set
+            if [ -n "${REDIS_HOST_PASSWORD+x}" ]; then
+                echo "session.save_path = \"tcp://${REDIS_HOST}:${REDIS_HOST_PORT:=6379}?auth=${REDIS_HOST_PASSWORD}\""
+            else
                 echo "session.save_path = \"tcp://${REDIS_HOST}:${REDIS_HOST_PORT:=6379}\""
+            fi
         } > /usr/local/etc/php/conf.d/redis-session.ini
     fi
 
diff --git a/nextcloud_production/config/redis.config.php b/nextcloud_production/config/redis.config.php
index 5df799f..1967616 100644
--- a/nextcloud_production/config/redis.config.php
+++ b/nextcloud_production/config/redis.config.php
@@ -6,6 +6,7 @@ if (getenv('REDIS_HOST')) {
     'redis' => array(
       'host' => getenv('REDIS_HOST'),
       'port' => getenv('REDIS_HOST_PORT') ?: 6379,
+      'password' => getenv('REDIS_HOST_PASSWORD'),
     ),
   );
 }
diff --git a/nextcloud_production/entrypoint.sh b/nextcloud_production/entrypoint.sh
index 0be9d28..9514d88 100755
--- a/nextcloud_production/entrypoint.sh
+++ b/nextcloud_production/entrypoint.sh
@@ -25,7 +25,12 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ] || [ "${NEXTCLOUD_UP
         echo "Configuring Redis as session handler"
         {
             echo 'session.save_handler = redis'
+            # check if redis password has been set
+            if [ -n "${REDIS_HOST_PASSWORD+x}" ]; then
+                echo "session.save_path = \"tcp://${REDIS_HOST}:${REDIS_HOST_PORT:=6379}?auth=${REDIS_HOST_PASSWORD}\""
+            else
                 echo "session.save_path = \"tcp://${REDIS_HOST}:${REDIS_HOST_PORT:=6379}\""
+            fi
         } > /usr/local/etc/php/conf.d/redis-session.ini
     fi
 

@yosifkit
Copy link
Member

Build test of #6615; 66413cf; amd64 (nextcloud):

$ bashbrew build nextcloud:14.0.14-apache
Using bashbrew/cache:80cee281b0d4b778a6a50a851bd18e666286a9543be524ee402ec792dd85eb80 (nextcloud:14.0.14-apache)
Tagging nextcloud:14.0.14-apache
Tagging nextcloud:14.0-apache
Tagging nextcloud:14-apache
Tagging nextcloud:14.0.14
Tagging nextcloud:14.0
Tagging nextcloud:14

$ test/run.sh nextcloud:14.0.14-apache
testing nextcloud:14.0.14-apache
	'utc' [1/8]...passed
	'cve-2014--shellshock' [2/8]...passed
	'no-hard-coded-passwords' [3/8]...passed
	'override-cmd' [4/8]...passed
	'nextcloud-cli-mysql' [5/8]............passed
	'nextcloud-cli-postgres' [6/8]..........passed
	'nextcloud-cli-sqlite' [7/8]....passed
	'nextcloud-apache-run' [8/8]....passed


$ bashbrew build nextcloud:14.0.14-fpm-alpine
Using bashbrew/cache:3c39b38a317ad90aa32fc0de057852d8742f3314ce2eb4a69e33020c66146001 (nextcloud:14.0.14-fpm-alpine)
Tagging nextcloud:14.0.14-fpm-alpine
Tagging nextcloud:14.0-fpm-alpine
Tagging nextcloud:14-fpm-alpine

$ test/run.sh nextcloud:14.0.14-fpm-alpine
testing nextcloud:14.0.14-fpm-alpine
	'utc' [1/8]...passed
	'cve-2014--shellshock' [2/8]...passed
	'no-hard-coded-passwords' [3/8]...passed
	'override-cmd' [4/8]...passed
	'nextcloud-cli-mysql' [5/8]............passed
	'nextcloud-cli-postgres' [6/8]..........passed
	'nextcloud-cli-sqlite' [7/8]....passed
	'nextcloud-fpm-run' [8/8]...passed


$ bashbrew build nextcloud:14.0.14-fpm
Using bashbrew/cache:bd613391f3a266dd6c82ada9bde7070d396589bfcaada32e12de6bdbf8bed382 (nextcloud:14.0.14-fpm)
Tagging nextcloud:14.0.14-fpm
Tagging nextcloud:14.0-fpm
Tagging nextcloud:14-fpm

$ test/run.sh nextcloud:14.0.14-fpm
testing nextcloud:14.0.14-fpm
	'utc' [1/8]...passed
	'cve-2014--shellshock' [2/8]...passed
	'no-hard-coded-passwords' [3/8]...passed
	'override-cmd' [4/8]...passed
	'nextcloud-cli-mysql' [5/8]...........passed
	'nextcloud-cli-postgres' [6/8].........passed
	'nextcloud-cli-sqlite' [7/8]....passed
	'nextcloud-fpm-run' [8/8]...passed


$ bashbrew build nextcloud:15.0.11-apache
Using bashbrew/cache:b170b0960dc0cc53eec7917103dbe86c2747830f08be1d0d503db9c283214279 (nextcloud:15.0.11-apache)
Tagging nextcloud:15.0.11-apache
Tagging nextcloud:15.0-apache
Tagging nextcloud:15-apache
Tagging nextcloud:15.0.11
Tagging nextcloud:15.0
Tagging nextcloud:15

$ test/run.sh nextcloud:15.0.11-apache
testing nextcloud:15.0.11-apache
	'utc' [1/8]...passed
	'cve-2014--shellshock' [2/8]...passed
	'no-hard-coded-passwords' [3/8]...passed
	'override-cmd' [4/8]...passed
	'nextcloud-cli-mysql' [5/8]...........passed
	'nextcloud-cli-postgres' [6/8]................passed
	'nextcloud-cli-sqlite' [7/8]....passed
	'nextcloud-apache-run' [8/8]....passed


$ bashbrew build nextcloud:15.0.11-fpm-alpine
Using bashbrew/cache:f066d232f242bdeb76fcb832852aad16c38ad305223c295408f6b1c5d0b89d22 (nextcloud:15.0.11-fpm-alpine)
Tagging nextcloud:15.0.11-fpm-alpine
Tagging nextcloud:15.0-fpm-alpine
Tagging nextcloud:15-fpm-alpine

$ test/run.sh nextcloud:15.0.11-fpm-alpine
testing nextcloud:15.0.11-fpm-alpine
	'utc' [1/8]...passed
	'cve-2014--shellshock' [2/8]...passed
	'no-hard-coded-passwords' [3/8]...passed
	'override-cmd' [4/8]...passed
	'nextcloud-cli-mysql' [5/8]............passed
	'nextcloud-cli-postgres' [6/8]...........passed
	'nextcloud-cli-sqlite' [7/8]....passed
	'nextcloud-fpm-run' [8/8]...passed


$ bashbrew build nextcloud:15.0.11-fpm
Using bashbrew/cache:acff4cfe5f082a693b3a4f82497ebc1099ae9de1547e5977739fc55eaaf3cac0 (nextcloud:15.0.11-fpm)
Tagging nextcloud:15.0.11-fpm
Tagging nextcloud:15.0-fpm
Tagging nextcloud:15-fpm

$ test/run.sh nextcloud:15.0.11-fpm
testing nextcloud:15.0.11-fpm
	'utc' [1/8]...passed
	'cve-2014--shellshock' [2/8]...passed
	'no-hard-coded-passwords' [3/8]...passed
	'override-cmd' [4/8]...passed
	'nextcloud-cli-mysql' [5/8]............passed
	'nextcloud-cli-postgres' [6/8]...........passed
	'nextcloud-cli-sqlite' [7/8]....passed
	'nextcloud-fpm-run' [8/8]...passed


$ bashbrew build nextcloud:16.0.4-apache
Using bashbrew/cache:4844c3d8a93b01e1b1de34c44c54b737a0941725bb8403422ce19cdd3bce44eb (nextcloud:16.0.4-apache)
Tagging nextcloud:16.0.4-apache
Tagging nextcloud:16.0-apache
Tagging nextcloud:16-apache
Tagging nextcloud:apache
Tagging nextcloud:stable-apache
Tagging nextcloud:production-apache
Tagging nextcloud:16.0.4
Tagging nextcloud:16.0
Tagging nextcloud:16
Tagging nextcloud:latest
Tagging nextcloud:stable
Tagging nextcloud:production

$ test/run.sh nextcloud:16.0.4-apache
testing nextcloud:16.0.4-apache
	'utc' [1/8]...passed
	'cve-2014--shellshock' [2/8]...passed
	'no-hard-coded-passwords' [3/8]...passed
	'override-cmd' [4/8]...passed
	'nextcloud-cli-mysql' [5/8]..............passed
	'nextcloud-cli-postgres' [6/8]................passed
	'nextcloud-cli-sqlite' [7/8].....passed
	'nextcloud-apache-run' [8/8]....passed


$ bashbrew build nextcloud:16.0.4-fpm-alpine
Using bashbrew/cache:7d2083662154e6b3cbd5cac4c68f66af11a6d260b74edd4e3b0851454effc1ad (nextcloud:16.0.4-fpm-alpine)
Tagging nextcloud:16.0.4-fpm-alpine
Tagging nextcloud:16.0-fpm-alpine
Tagging nextcloud:16-fpm-alpine
Tagging nextcloud:fpm-alpine
Tagging nextcloud:stable-fpm-alpine
Tagging nextcloud:production-fpm-alpine

$ test/run.sh nextcloud:16.0.4-fpm-alpine
testing nextcloud:16.0.4-fpm-alpine
	'utc' [1/8]...passed
	'cve-2014--shellshock' [2/8]...passed
	'no-hard-coded-passwords' [3/8]...passed
	'override-cmd' [4/8]...passed
	'nextcloud-cli-mysql' [5/8]..............passed
	'nextcloud-cli-postgres' [6/8].................passed
	'nextcloud-cli-sqlite' [7/8].....passed
	'nextcloud-fpm-run' [8/8]...passed


$ bashbrew build nextcloud:16.0.4-fpm
Using bashbrew/cache:63d5c397a13a7da6563eadd4eb57f8cd903cfa3cf21de1e78223bf5c610569bc (nextcloud:16.0.4-fpm)
Tagging nextcloud:16.0.4-fpm
Tagging nextcloud:16.0-fpm
Tagging nextcloud:16-fpm
Tagging nextcloud:fpm
Tagging nextcloud:stable-fpm
Tagging nextcloud:production-fpm

$ test/run.sh nextcloud:16.0.4-fpm
testing nextcloud:16.0.4-fpm
	'utc' [1/8]...passed
	'cve-2014--shellshock' [2/8]...passed
	'no-hard-coded-passwords' [3/8]...passed
	'override-cmd' [4/8]...passed
	'nextcloud-cli-mysql' [5/8]............passed
	'nextcloud-cli-postgres' [6/8].................passed
	'nextcloud-cli-sqlite' [7/8].....passed
	'nextcloud-fpm-run' [8/8]...passed


$ bashbrew build nextcloud:17.0.0beta4-apache
Using bashbrew/cache:ee257e1a549073f4c3e6d9771edfe3117f1dad8eae748304512455544521616d (nextcloud:17.0.0beta4-apache)
Tagging nextcloud:17.0.0beta4-apache
Tagging nextcloud:17.0.0-beta-apache
Tagging nextcloud:17.0-beta-apache
Tagging nextcloud:17-beta-apache
Tagging nextcloud:17.0.0beta4
Tagging nextcloud:17.0.0-beta
Tagging nextcloud:17.0-beta
Tagging nextcloud:17-beta

$ test/run.sh nextcloud:17.0.0beta4-apache
testing nextcloud:17.0.0beta4-apache
	'utc' [1/8]...passed
	'cve-2014--shellshock' [2/8]...passed
	'no-hard-coded-passwords' [3/8]...passed
	'override-cmd' [4/8]...passed
	'nextcloud-cli-mysql' [5/8]..............passed
	'nextcloud-cli-postgres' [6/8]...................passed
	'nextcloud-cli-sqlite' [7/8].....passed
	'nextcloud-apache-run' [8/8]....passed


$ bashbrew build nextcloud:17.0.0beta4-fpm-alpine
Using bashbrew/cache:d1d9dca963069506fe991b58c031e3758a6cf6467b0c7698de97db83d7ddc3ae (nextcloud:17.0.0beta4-fpm-alpine)
Tagging nextcloud:17.0.0beta4-fpm-alpine
Tagging nextcloud:17.0.0-beta-fpm-alpine
Tagging nextcloud:17.0-beta-fpm-alpine
Tagging nextcloud:17-beta-fpm-alpine

$ test/run.sh nextcloud:17.0.0beta4-fpm-alpine
testing nextcloud:17.0.0beta4-fpm-alpine
	'utc' [1/8]...passed
	'cve-2014--shellshock' [2/8]...passed
	'no-hard-coded-passwords' [3/8]...passed
	'override-cmd' [4/8]...passed
	'nextcloud-cli-mysql' [5/8].............passed
	'nextcloud-cli-postgres' [6/8]...................passed
	'nextcloud-cli-sqlite' [7/8].....passed
	'nextcloud-fpm-run' [8/8]...passed


$ bashbrew build nextcloud:17.0.0beta4-fpm
Using bashbrew/cache:1084a079e430183c5d095d1b62fd42f2022a5ffba9247027eb6e105b6998b848 (nextcloud:17.0.0beta4-fpm)
Tagging nextcloud:17.0.0beta4-fpm
Tagging nextcloud:17.0.0-beta-fpm
Tagging nextcloud:17.0-beta-fpm
Tagging nextcloud:17-beta-fpm

$ test/run.sh nextcloud:17.0.0beta4-fpm
testing nextcloud:17.0.0beta4-fpm
	'utc' [1/8]...passed
	'cve-2014--shellshock' [2/8]...passed
	'no-hard-coded-passwords' [3/8]...passed
	'override-cmd' [4/8]...passed
	'nextcloud-cli-mysql' [5/8]..............passed
	'nextcloud-cli-postgres' [6/8]...................passed
	'nextcloud-cli-sqlite' [7/8].....passed
	'nextcloud-fpm-run' [8/8]...passed

@yosifkit yosifkit merged commit 3e6eca3 into docker-library:master Sep 10, 2019
@tilosp-bot tilosp-bot deleted the bot/nextcloud branch September 10, 2019 23:03
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.

3 participants