Skip to content

Conversation

@tianon
Copy link
Member

@tianon tianon commented Dec 6, 2016

- `golang`: update Windows Git to 2.11.0 (docker-library/golang#126) - `php`: fix subshell usage (docker-library/php#334) - `postgres`: update `pg_hba.conf` for IPv6 support (docker-library/postgres#202) - `rocket.chat`: 0.47.0 - `wordpress`: 4.7
@tianon
Copy link
Member Author

tianon commented Dec 6, 2016

diff --git a/golang_1.6-windowsservercore/Dockerfile b/golang_1.6-windowsservercore/Dockerfile index 4ad63ef..2948c68 100644 --- a/golang_1.6-windowsservercore/Dockerfile +++ b/golang_1.6-windowsservercore/Dockerfile @@ -4,10 +4,10 @@ FROM microsoft/windowsservercore SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"] # install Git (especially for "go get") -ENV GIT_VERSION 2.9.2 +ENV GIT_VERSION 2.11.0 ENV GIT_TAG v${GIT_VERSION}.windows.1 ENV GIT_DOWNLOAD_URL https://github.com/git-for-windows/git/releases/download/${GIT_TAG}/Git-${GIT_VERSION}-64-bit.exe -ENV GIT_DOWNLOAD_SHA256 006d971bcbe73cc8d841a100a4eb20d22e135142bf5b0f2120722fd420e166e5 +ENV GIT_DOWNLOAD_SHA256 fd1937ea8468461d35d9cabfcdd2daa3a74509dc9213c43c2b9615e8f0b85086 # steps inspired by "chcolateyInstall.ps1" from "git.install" (https://chocolatey.org/packages/git.install) RUN Write-Host ('Downloading {0} ...' -f $env:GIT_DOWNLOAD_URL); \	Invoke-WebRequest -Uri $env:GIT_DOWNLOAD_URL -OutFile 'git.exe'; \ diff --git a/golang_1.8-windowsservercore/Dockerfile b/golang_1.8-windowsservercore/Dockerfile index b71c26f..5283b40 100644 --- a/golang_1.8-windowsservercore/Dockerfile +++ b/golang_1.8-windowsservercore/Dockerfile @@ -4,10 +4,10 @@ FROM microsoft/windowsservercore SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"] # install Git (especially for "go get") -ENV GIT_VERSION 2.9.2 +ENV GIT_VERSION 2.11.0 ENV GIT_TAG v${GIT_VERSION}.windows.1 ENV GIT_DOWNLOAD_URL https://github.com/git-for-windows/git/releases/download/${GIT_TAG}/Git-${GIT_VERSION}-64-bit.exe -ENV GIT_DOWNLOAD_SHA256 006d971bcbe73cc8d841a100a4eb20d22e135142bf5b0f2120722fd420e166e5 +ENV GIT_DOWNLOAD_SHA256 fd1937ea8468461d35d9cabfcdd2daa3a74509dc9213c43c2b9615e8f0b85086 # steps inspired by "chcolateyInstall.ps1" from "git.install" (https://chocolatey.org/packages/git.install) RUN Write-Host ('Downloading {0} ...' -f $env:GIT_DOWNLOAD_URL); \	Invoke-WebRequest -Uri $env:GIT_DOWNLOAD_URL -OutFile 'git.exe'; \ diff --git a/golang_windowsservercore/Dockerfile b/golang_windowsservercore/Dockerfile index cbc1714..cda2a2e 100644 --- a/golang_windowsservercore/Dockerfile +++ b/golang_windowsservercore/Dockerfile @@ -4,10 +4,10 @@ FROM microsoft/windowsservercore SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"] # install Git (especially for "go get") -ENV GIT_VERSION 2.9.2 +ENV GIT_VERSION 2.11.0 ENV GIT_TAG v${GIT_VERSION}.windows.1 ENV GIT_DOWNLOAD_URL https://github.com/git-for-windows/git/releases/download/${GIT_TAG}/Git-${GIT_VERSION}-64-bit.exe -ENV GIT_DOWNLOAD_SHA256 006d971bcbe73cc8d841a100a4eb20d22e135142bf5b0f2120722fd420e166e5 +ENV GIT_DOWNLOAD_SHA256 fd1937ea8468461d35d9cabfcdd2daa3a74509dc9213c43c2b9615e8f0b85086 # steps inspired by "chcolateyInstall.ps1" from "git.install" (https://chocolatey.org/packages/git.install) RUN Write-Host ('Downloading {0} ...' -f $env:GIT_DOWNLOAD_URL); \	Invoke-WebRequest -Uri $env:GIT_DOWNLOAD_URL -OutFile 'git.exe'; \ diff --git a/php_5-alpine/docker-php-ext-configure b/php_5-alpine/docker-php-ext-configure index 21f4320..2a6f839 100755 --- a/php_5-alpine/docker-php-ext-configure +++ b/php_5-alpine/docker-php-ext-configure @@ -10,9 +10,10 @@ if [ -z "$srcExists" ]; then	touch /usr/src/php/.docker-delete-me fi +cd /usr/src/php/ext + ext="$1" -extDir="/usr/src/php/ext/$ext" -if [ -z "$ext" ] || [ ! -d "$extDir" ]; then +if [ -z "$ext" ] || [ ! -d "$ext" ]; then	echo >&2 "usage: $0 ext-name [configure flags]"	echo >&2 " ie: $0 gd --with-jpeg-dir=/usr/local/something"	echo >&2 @@ -46,6 +47,6 @@ if [ "$pm" = 'apk' ]; then fi set -x -cd "$extDir" +cd "$ext" phpize ./configure "$@" diff --git a/php_5-alpine/docker-php-ext-install b/php_5-alpine/docker-php-ext-install index 27955e0..79df34e 100755 --- a/php_5-alpine/docker-php-ext-install +++ b/php_5-alpine/docker-php-ext-install @@ -89,19 +89,19 @@ if [ "$pm" = 'apk' ]; then	fi fi +popDir="$PWD" for ext in $exts; do -( -cd "$ext" -[ -e Makefile ] || docker-php-ext-configure "$ext" -make -j"$j" -make -j"$j" install -find modules \ --maxdepth 1 \ --name '*.so' \ --exec basename '{}' ';' \ -| xargs -r docker-php-ext-enable -make -j"$j" clean -) +cd "$ext" +[ -e Makefile ] || docker-php-ext-configure "$ext" +make -j"$j" +make -j"$j" install +find modules \ +-maxdepth 1 \ +-name '*.so' \ +-exec basename '{}' ';' \ +| xargs -r docker-php-ext-enable +make -j"$j" clean +cd "$popDir" done if [ "$pm" = 'apk' ] && [ -n "$apkDel" ]; then diff --git a/php_5-apache/docker-php-ext-configure b/php_5-apache/docker-php-ext-configure index 21f4320..2a6f839 100755 --- a/php_5-apache/docker-php-ext-configure +++ b/php_5-apache/docker-php-ext-configure @@ -10,9 +10,10 @@ if [ -z "$srcExists" ]; then	touch /usr/src/php/.docker-delete-me fi +cd /usr/src/php/ext + ext="$1" -extDir="/usr/src/php/ext/$ext" -if [ -z "$ext" ] || [ ! -d "$extDir" ]; then +if [ -z "$ext" ] || [ ! -d "$ext" ]; then	echo >&2 "usage: $0 ext-name [configure flags]"	echo >&2 " ie: $0 gd --with-jpeg-dir=/usr/local/something"	echo >&2 @@ -46,6 +47,6 @@ if [ "$pm" = 'apk' ]; then fi set -x -cd "$extDir" +cd "$ext" phpize ./configure "$@" diff --git a/php_5-apache/docker-php-ext-install b/php_5-apache/docker-php-ext-install index 27955e0..79df34e 100755 --- a/php_5-apache/docker-php-ext-install +++ b/php_5-apache/docker-php-ext-install @@ -89,19 +89,19 @@ if [ "$pm" = 'apk' ]; then	fi fi +popDir="$PWD" for ext in $exts; do -( -cd "$ext" -[ -e Makefile ] || docker-php-ext-configure "$ext" -make -j"$j" -make -j"$j" install -find modules \ --maxdepth 1 \ --name '*.so' \ --exec basename '{}' ';' \ -| xargs -r docker-php-ext-enable -make -j"$j" clean -) +cd "$ext" +[ -e Makefile ] || docker-php-ext-configure "$ext" +make -j"$j" +make -j"$j" install +find modules \ +-maxdepth 1 \ +-name '*.so' \ +-exec basename '{}' ';' \ +| xargs -r docker-php-ext-enable +make -j"$j" clean +cd "$popDir" done if [ "$pm" = 'apk' ] && [ -n "$apkDel" ]; then diff --git a/php_5-fpm-alpine/docker-php-ext-configure b/php_5-fpm-alpine/docker-php-ext-configure index 21f4320..2a6f839 100755 --- a/php_5-fpm-alpine/docker-php-ext-configure +++ b/php_5-fpm-alpine/docker-php-ext-configure @@ -10,9 +10,10 @@ if [ -z "$srcExists" ]; then	touch /usr/src/php/.docker-delete-me fi +cd /usr/src/php/ext + ext="$1" -extDir="/usr/src/php/ext/$ext" -if [ -z "$ext" ] || [ ! -d "$extDir" ]; then +if [ -z "$ext" ] || [ ! -d "$ext" ]; then	echo >&2 "usage: $0 ext-name [configure flags]"	echo >&2 " ie: $0 gd --with-jpeg-dir=/usr/local/something"	echo >&2 @@ -46,6 +47,6 @@ if [ "$pm" = 'apk' ]; then fi set -x -cd "$extDir" +cd "$ext" phpize ./configure "$@" diff --git a/php_5-fpm-alpine/docker-php-ext-install b/php_5-fpm-alpine/docker-php-ext-install index 27955e0..79df34e 100755 --- a/php_5-fpm-alpine/docker-php-ext-install +++ b/php_5-fpm-alpine/docker-php-ext-install @@ -89,19 +89,19 @@ if [ "$pm" = 'apk' ]; then	fi fi +popDir="$PWD" for ext in $exts; do -( -cd "$ext" -[ -e Makefile ] || docker-php-ext-configure "$ext" -make -j"$j" -make -j"$j" install -find modules \ --maxdepth 1 \ --name '*.so' \ --exec basename '{}' ';' \ -| xargs -r docker-php-ext-enable -make -j"$j" clean -) +cd "$ext" +[ -e Makefile ] || docker-php-ext-configure "$ext" +make -j"$j" +make -j"$j" install +find modules \ +-maxdepth 1 \ +-name '*.so' \ +-exec basename '{}' ';' \ +| xargs -r docker-php-ext-enable +make -j"$j" clean +cd "$popDir" done if [ "$pm" = 'apk' ] && [ -n "$apkDel" ]; then diff --git a/php_5-fpm/docker-php-ext-configure b/php_5-fpm/docker-php-ext-configure index 21f4320..2a6f839 100755 --- a/php_5-fpm/docker-php-ext-configure +++ b/php_5-fpm/docker-php-ext-configure @@ -10,9 +10,10 @@ if [ -z "$srcExists" ]; then	touch /usr/src/php/.docker-delete-me fi +cd /usr/src/php/ext + ext="$1" -extDir="/usr/src/php/ext/$ext" -if [ -z "$ext" ] || [ ! -d "$extDir" ]; then +if [ -z "$ext" ] || [ ! -d "$ext" ]; then	echo >&2 "usage: $0 ext-name [configure flags]"	echo >&2 " ie: $0 gd --with-jpeg-dir=/usr/local/something"	echo >&2 @@ -46,6 +47,6 @@ if [ "$pm" = 'apk' ]; then fi set -x -cd "$extDir" +cd "$ext" phpize ./configure "$@" diff --git a/php_5-fpm/docker-php-ext-install b/php_5-fpm/docker-php-ext-install index 27955e0..79df34e 100755 --- a/php_5-fpm/docker-php-ext-install +++ b/php_5-fpm/docker-php-ext-install @@ -89,19 +89,19 @@ if [ "$pm" = 'apk' ]; then	fi fi +popDir="$PWD" for ext in $exts; do -( -cd "$ext" -[ -e Makefile ] || docker-php-ext-configure "$ext" -make -j"$j" -make -j"$j" install -find modules \ --maxdepth 1 \ --name '*.so' \ --exec basename '{}' ';' \ -| xargs -r docker-php-ext-enable -make -j"$j" clean -) +cd "$ext" +[ -e Makefile ] || docker-php-ext-configure "$ext" +make -j"$j" +make -j"$j" install +find modules \ +-maxdepth 1 \ +-name '*.so' \ +-exec basename '{}' ';' \ +| xargs -r docker-php-ext-enable +make -j"$j" clean +cd "$popDir" done if [ "$pm" = 'apk' ] && [ -n "$apkDel" ]; then diff --git a/php_5-zts-alpine/docker-php-ext-configure b/php_5-zts-alpine/docker-php-ext-configure index 21f4320..2a6f839 100755 --- a/php_5-zts-alpine/docker-php-ext-configure +++ b/php_5-zts-alpine/docker-php-ext-configure @@ -10,9 +10,10 @@ if [ -z "$srcExists" ]; then	touch /usr/src/php/.docker-delete-me fi +cd /usr/src/php/ext + ext="$1" -extDir="/usr/src/php/ext/$ext" -if [ -z "$ext" ] || [ ! -d "$extDir" ]; then +if [ -z "$ext" ] || [ ! -d "$ext" ]; then	echo >&2 "usage: $0 ext-name [configure flags]"	echo >&2 " ie: $0 gd --with-jpeg-dir=/usr/local/something"	echo >&2 @@ -46,6 +47,6 @@ if [ "$pm" = 'apk' ]; then fi set -x -cd "$extDir" +cd "$ext" phpize ./configure "$@" diff --git a/php_5-zts-alpine/docker-php-ext-install b/php_5-zts-alpine/docker-php-ext-install index 27955e0..79df34e 100755 --- a/php_5-zts-alpine/docker-php-ext-install +++ b/php_5-zts-alpine/docker-php-ext-install @@ -89,19 +89,19 @@ if [ "$pm" = 'apk' ]; then	fi fi +popDir="$PWD" for ext in $exts; do -( -cd "$ext" -[ -e Makefile ] || docker-php-ext-configure "$ext" -make -j"$j" -make -j"$j" install -find modules \ --maxdepth 1 \ --name '*.so' \ --exec basename '{}' ';' \ -| xargs -r docker-php-ext-enable -make -j"$j" clean -) +cd "$ext" +[ -e Makefile ] || docker-php-ext-configure "$ext" +make -j"$j" +make -j"$j" install +find modules \ +-maxdepth 1 \ +-name '*.so' \ +-exec basename '{}' ';' \ +| xargs -r docker-php-ext-enable +make -j"$j" clean +cd "$popDir" done if [ "$pm" = 'apk' ] && [ -n "$apkDel" ]; then diff --git a/php_5-zts/docker-php-ext-configure b/php_5-zts/docker-php-ext-configure index 21f4320..2a6f839 100755 --- a/php_5-zts/docker-php-ext-configure +++ b/php_5-zts/docker-php-ext-configure @@ -10,9 +10,10 @@ if [ -z "$srcExists" ]; then	touch /usr/src/php/.docker-delete-me fi +cd /usr/src/php/ext + ext="$1" -extDir="/usr/src/php/ext/$ext" -if [ -z "$ext" ] || [ ! -d "$extDir" ]; then +if [ -z "$ext" ] || [ ! -d "$ext" ]; then	echo >&2 "usage: $0 ext-name [configure flags]"	echo >&2 " ie: $0 gd --with-jpeg-dir=/usr/local/something"	echo >&2 @@ -46,6 +47,6 @@ if [ "$pm" = 'apk' ]; then fi set -x -cd "$extDir" +cd "$ext" phpize ./configure "$@" diff --git a/php_5-zts/docker-php-ext-install b/php_5-zts/docker-php-ext-install index 27955e0..79df34e 100755 --- a/php_5-zts/docker-php-ext-install +++ b/php_5-zts/docker-php-ext-install @@ -89,19 +89,19 @@ if [ "$pm" = 'apk' ]; then	fi fi +popDir="$PWD" for ext in $exts; do -( -cd "$ext" -[ -e Makefile ] || docker-php-ext-configure "$ext" -make -j"$j" -make -j"$j" install -find modules \ --maxdepth 1 \ --name '*.so' \ --exec basename '{}' ';' \ -| xargs -r docker-php-ext-enable -make -j"$j" clean -) +cd "$ext" +[ -e Makefile ] || docker-php-ext-configure "$ext" +make -j"$j" +make -j"$j" install +find modules \ +-maxdepth 1 \ +-name '*.so' \ +-exec basename '{}' ';' \ +| xargs -r docker-php-ext-enable +make -j"$j" clean +cd "$popDir" done if [ "$pm" = 'apk' ] && [ -n "$apkDel" ]; then diff --git a/php_5/docker-php-ext-configure b/php_5/docker-php-ext-configure index 21f4320..2a6f839 100755 --- a/php_5/docker-php-ext-configure +++ b/php_5/docker-php-ext-configure @@ -10,9 +10,10 @@ if [ -z "$srcExists" ]; then	touch /usr/src/php/.docker-delete-me fi +cd /usr/src/php/ext + ext="$1" -extDir="/usr/src/php/ext/$ext" -if [ -z "$ext" ] || [ ! -d "$extDir" ]; then +if [ -z "$ext" ] || [ ! -d "$ext" ]; then	echo >&2 "usage: $0 ext-name [configure flags]"	echo >&2 " ie: $0 gd --with-jpeg-dir=/usr/local/something"	echo >&2 @@ -46,6 +47,6 @@ if [ "$pm" = 'apk' ]; then fi set -x -cd "$extDir" +cd "$ext" phpize ./configure "$@" diff --git a/php_5/docker-php-ext-install b/php_5/docker-php-ext-install index 27955e0..79df34e 100755 --- a/php_5/docker-php-ext-install +++ b/php_5/docker-php-ext-install @@ -89,19 +89,19 @@ if [ "$pm" = 'apk' ]; then	fi fi +popDir="$PWD" for ext in $exts; do -( -cd "$ext" -[ -e Makefile ] || docker-php-ext-configure "$ext" -make -j"$j" -make -j"$j" install -find modules \ --maxdepth 1 \ --name '*.so' \ --exec basename '{}' ';' \ -| xargs -r docker-php-ext-enable -make -j"$j" clean -) +cd "$ext" +[ -e Makefile ] || docker-php-ext-configure "$ext" +make -j"$j" +make -j"$j" install +find modules \ +-maxdepth 1 \ +-name '*.so' \ +-exec basename '{}' ';' \ +| xargs -r docker-php-ext-enable +make -j"$j" clean +cd "$popDir" done if [ "$pm" = 'apk' ] && [ -n "$apkDel" ]; then diff --git a/php_7.0-alpine/docker-php-ext-configure b/php_7.0-alpine/docker-php-ext-configure index 21f4320..2a6f839 100755 --- a/php_7.0-alpine/docker-php-ext-configure +++ b/php_7.0-alpine/docker-php-ext-configure @@ -10,9 +10,10 @@ if [ -z "$srcExists" ]; then	touch /usr/src/php/.docker-delete-me fi +cd /usr/src/php/ext + ext="$1" -extDir="/usr/src/php/ext/$ext" -if [ -z "$ext" ] || [ ! -d "$extDir" ]; then +if [ -z "$ext" ] || [ ! -d "$ext" ]; then	echo >&2 "usage: $0 ext-name [configure flags]"	echo >&2 " ie: $0 gd --with-jpeg-dir=/usr/local/something"	echo >&2 @@ -46,6 +47,6 @@ if [ "$pm" = 'apk' ]; then fi set -x -cd "$extDir" +cd "$ext" phpize ./configure "$@" diff --git a/php_7.0-alpine/docker-php-ext-install b/php_7.0-alpine/docker-php-ext-install index 27955e0..79df34e 100755 --- a/php_7.0-alpine/docker-php-ext-install +++ b/php_7.0-alpine/docker-php-ext-install @@ -89,19 +89,19 @@ if [ "$pm" = 'apk' ]; then	fi fi +popDir="$PWD" for ext in $exts; do -( -cd "$ext" -[ -e Makefile ] || docker-php-ext-configure "$ext" -make -j"$j" -make -j"$j" install -find modules \ --maxdepth 1 \ --name '*.so' \ --exec basename '{}' ';' \ -| xargs -r docker-php-ext-enable -make -j"$j" clean -) +cd "$ext" +[ -e Makefile ] || docker-php-ext-configure "$ext" +make -j"$j" +make -j"$j" install +find modules \ +-maxdepth 1 \ +-name '*.so' \ +-exec basename '{}' ';' \ +| xargs -r docker-php-ext-enable +make -j"$j" clean +cd "$popDir" done if [ "$pm" = 'apk' ] && [ -n "$apkDel" ]; then diff --git a/php_7.0-apache/docker-php-ext-configure b/php_7.0-apache/docker-php-ext-configure index 21f4320..2a6f839 100755 --- a/php_7.0-apache/docker-php-ext-configure +++ b/php_7.0-apache/docker-php-ext-configure @@ -10,9 +10,10 @@ if [ -z "$srcExists" ]; then	touch /usr/src/php/.docker-delete-me fi +cd /usr/src/php/ext + ext="$1" -extDir="/usr/src/php/ext/$ext" -if [ -z "$ext" ] || [ ! -d "$extDir" ]; then +if [ -z "$ext" ] || [ ! -d "$ext" ]; then	echo >&2 "usage: $0 ext-name [configure flags]"	echo >&2 " ie: $0 gd --with-jpeg-dir=/usr/local/something"	echo >&2 @@ -46,6 +47,6 @@ if [ "$pm" = 'apk' ]; then fi set -x -cd "$extDir" +cd "$ext" phpize ./configure "$@" diff --git a/php_7.0-apache/docker-php-ext-install b/php_7.0-apache/docker-php-ext-install index 27955e0..79df34e 100755 --- a/php_7.0-apache/docker-php-ext-install +++ b/php_7.0-apache/docker-php-ext-install @@ -89,19 +89,19 @@ if [ "$pm" = 'apk' ]; then	fi fi +popDir="$PWD" for ext in $exts; do -( -cd "$ext" -[ -e Makefile ] || docker-php-ext-configure "$ext" -make -j"$j" -make -j"$j" install -find modules \ --maxdepth 1 \ --name '*.so' \ --exec basename '{}' ';' \ -| xargs -r docker-php-ext-enable -make -j"$j" clean -) +cd "$ext" +[ -e Makefile ] || docker-php-ext-configure "$ext" +make -j"$j" +make -j"$j" install +find modules \ +-maxdepth 1 \ +-name '*.so' \ +-exec basename '{}' ';' \ +| xargs -r docker-php-ext-enable +make -j"$j" clean +cd "$popDir" done if [ "$pm" = 'apk' ] && [ -n "$apkDel" ]; then diff --git a/php_7.0-fpm-alpine/docker-php-ext-configure b/php_7.0-fpm-alpine/docker-php-ext-configure index 21f4320..2a6f839 100755 --- a/php_7.0-fpm-alpine/docker-php-ext-configure +++ b/php_7.0-fpm-alpine/docker-php-ext-configure @@ -10,9 +10,10 @@ if [ -z "$srcExists" ]; then	touch /usr/src/php/.docker-delete-me fi +cd /usr/src/php/ext + ext="$1" -extDir="/usr/src/php/ext/$ext" -if [ -z "$ext" ] || [ ! -d "$extDir" ]; then +if [ -z "$ext" ] || [ ! -d "$ext" ]; then	echo >&2 "usage: $0 ext-name [configure flags]"	echo >&2 " ie: $0 gd --with-jpeg-dir=/usr/local/something"	echo >&2 @@ -46,6 +47,6 @@ if [ "$pm" = 'apk' ]; then fi set -x -cd "$extDir" +cd "$ext" phpize ./configure "$@" diff --git a/php_7.0-fpm-alpine/docker-php-ext-install b/php_7.0-fpm-alpine/docker-php-ext-install index 27955e0..79df34e 100755 --- a/php_7.0-fpm-alpine/docker-php-ext-install +++ b/php_7.0-fpm-alpine/docker-php-ext-install @@ -89,19 +89,19 @@ if [ "$pm" = 'apk' ]; then	fi fi +popDir="$PWD" for ext in $exts; do -( -cd "$ext" -[ -e Makefile ] || docker-php-ext-configure "$ext" -make -j"$j" -make -j"$j" install -find modules \ --maxdepth 1 \ --name '*.so' \ --exec basename '{}' ';' \ -| xargs -r docker-php-ext-enable -make -j"$j" clean -) +cd "$ext" +[ -e Makefile ] || docker-php-ext-configure "$ext" +make -j"$j" +make -j"$j" install +find modules \ +-maxdepth 1 \ +-name '*.so' \ +-exec basename '{}' ';' \ +| xargs -r docker-php-ext-enable +make -j"$j" clean +cd "$popDir" done if [ "$pm" = 'apk' ] && [ -n "$apkDel" ]; then diff --git a/php_7.0-fpm/docker-php-ext-configure b/php_7.0-fpm/docker-php-ext-configure index 21f4320..2a6f839 100755 --- a/php_7.0-fpm/docker-php-ext-configure +++ b/php_7.0-fpm/docker-php-ext-configure @@ -10,9 +10,10 @@ if [ -z "$srcExists" ]; then	touch /usr/src/php/.docker-delete-me fi +cd /usr/src/php/ext + ext="$1" -extDir="/usr/src/php/ext/$ext" -if [ -z "$ext" ] || [ ! -d "$extDir" ]; then +if [ -z "$ext" ] || [ ! -d "$ext" ]; then	echo >&2 "usage: $0 ext-name [configure flags]"	echo >&2 " ie: $0 gd --with-jpeg-dir=/usr/local/something"	echo >&2 @@ -46,6 +47,6 @@ if [ "$pm" = 'apk' ]; then fi set -x -cd "$extDir" +cd "$ext" phpize ./configure "$@" diff --git a/php_7.0-fpm/docker-php-ext-install b/php_7.0-fpm/docker-php-ext-install index 27955e0..79df34e 100755 --- a/php_7.0-fpm/docker-php-ext-install +++ b/php_7.0-fpm/docker-php-ext-install @@ -89,19 +89,19 @@ if [ "$pm" = 'apk' ]; then	fi fi +popDir="$PWD" for ext in $exts; do -( -cd "$ext" -[ -e Makefile ] || docker-php-ext-configure "$ext" -make -j"$j" -make -j"$j" install -find modules \ --maxdepth 1 \ --name '*.so' \ --exec basename '{}' ';' \ -| xargs -r docker-php-ext-enable -make -j"$j" clean -) +cd "$ext" +[ -e Makefile ] || docker-php-ext-configure "$ext" +make -j"$j" +make -j"$j" install +find modules \ +-maxdepth 1 \ +-name '*.so' \ +-exec basename '{}' ';' \ +| xargs -r docker-php-ext-enable +make -j"$j" clean +cd "$popDir" done if [ "$pm" = 'apk' ] && [ -n "$apkDel" ]; then diff --git a/php_7.0-zts-alpine/docker-php-ext-configure b/php_7.0-zts-alpine/docker-php-ext-configure index 21f4320..2a6f839 100755 --- a/php_7.0-zts-alpine/docker-php-ext-configure +++ b/php_7.0-zts-alpine/docker-php-ext-configure @@ -10,9 +10,10 @@ if [ -z "$srcExists" ]; then	touch /usr/src/php/.docker-delete-me fi +cd /usr/src/php/ext + ext="$1" -extDir="/usr/src/php/ext/$ext" -if [ -z "$ext" ] || [ ! -d "$extDir" ]; then +if [ -z "$ext" ] || [ ! -d "$ext" ]; then	echo >&2 "usage: $0 ext-name [configure flags]"	echo >&2 " ie: $0 gd --with-jpeg-dir=/usr/local/something"	echo >&2 @@ -46,6 +47,6 @@ if [ "$pm" = 'apk' ]; then fi set -x -cd "$extDir" +cd "$ext" phpize ./configure "$@" diff --git a/php_7.0-zts-alpine/docker-php-ext-install b/php_7.0-zts-alpine/docker-php-ext-install index 27955e0..79df34e 100755 --- a/php_7.0-zts-alpine/docker-php-ext-install +++ b/php_7.0-zts-alpine/docker-php-ext-install @@ -89,19 +89,19 @@ if [ "$pm" = 'apk' ]; then	fi fi +popDir="$PWD" for ext in $exts; do -( -cd "$ext" -[ -e Makefile ] || docker-php-ext-configure "$ext" -make -j"$j" -make -j"$j" install -find modules \ --maxdepth 1 \ --name '*.so' \ --exec basename '{}' ';' \ -| xargs -r docker-php-ext-enable -make -j"$j" clean -) +cd "$ext" +[ -e Makefile ] || docker-php-ext-configure "$ext" +make -j"$j" +make -j"$j" install +find modules \ +-maxdepth 1 \ +-name '*.so' \ +-exec basename '{}' ';' \ +| xargs -r docker-php-ext-enable +make -j"$j" clean +cd "$popDir" done if [ "$pm" = 'apk' ] && [ -n "$apkDel" ]; then diff --git a/php_7.0-zts/docker-php-ext-configure b/php_7.0-zts/docker-php-ext-configure index 21f4320..2a6f839 100755 --- a/php_7.0-zts/docker-php-ext-configure +++ b/php_7.0-zts/docker-php-ext-configure @@ -10,9 +10,10 @@ if [ -z "$srcExists" ]; then	touch /usr/src/php/.docker-delete-me fi +cd /usr/src/php/ext + ext="$1" -extDir="/usr/src/php/ext/$ext" -if [ -z "$ext" ] || [ ! -d "$extDir" ]; then +if [ -z "$ext" ] || [ ! -d "$ext" ]; then	echo >&2 "usage: $0 ext-name [configure flags]"	echo >&2 " ie: $0 gd --with-jpeg-dir=/usr/local/something"	echo >&2 @@ -46,6 +47,6 @@ if [ "$pm" = 'apk' ]; then fi set -x -cd "$extDir" +cd "$ext" phpize ./configure "$@" diff --git a/php_7.0-zts/docker-php-ext-install b/php_7.0-zts/docker-php-ext-install index 27955e0..79df34e 100755 --- a/php_7.0-zts/docker-php-ext-install +++ b/php_7.0-zts/docker-php-ext-install @@ -89,19 +89,19 @@ if [ "$pm" = 'apk' ]; then	fi fi +popDir="$PWD" for ext in $exts; do -( -cd "$ext" -[ -e Makefile ] || docker-php-ext-configure "$ext" -make -j"$j" -make -j"$j" install -find modules \ --maxdepth 1 \ --name '*.so' \ --exec basename '{}' ';' \ -| xargs -r docker-php-ext-enable -make -j"$j" clean -) +cd "$ext" +[ -e Makefile ] || docker-php-ext-configure "$ext" +make -j"$j" +make -j"$j" install +find modules \ +-maxdepth 1 \ +-name '*.so' \ +-exec basename '{}' ';' \ +| xargs -r docker-php-ext-enable +make -j"$j" clean +cd "$popDir" done if [ "$pm" = 'apk' ] && [ -n "$apkDel" ]; then diff --git a/php_7.0/docker-php-ext-configure b/php_7.0/docker-php-ext-configure index 21f4320..2a6f839 100755 --- a/php_7.0/docker-php-ext-configure +++ b/php_7.0/docker-php-ext-configure @@ -10,9 +10,10 @@ if [ -z "$srcExists" ]; then	touch /usr/src/php/.docker-delete-me fi +cd /usr/src/php/ext + ext="$1" -extDir="/usr/src/php/ext/$ext" -if [ -z "$ext" ] || [ ! -d "$extDir" ]; then +if [ -z "$ext" ] || [ ! -d "$ext" ]; then	echo >&2 "usage: $0 ext-name [configure flags]"	echo >&2 " ie: $0 gd --with-jpeg-dir=/usr/local/something"	echo >&2 @@ -46,6 +47,6 @@ if [ "$pm" = 'apk' ]; then fi set -x -cd "$extDir" +cd "$ext" phpize ./configure "$@" diff --git a/php_7.0/docker-php-ext-install b/php_7.0/docker-php-ext-install index 27955e0..79df34e 100755 --- a/php_7.0/docker-php-ext-install +++ b/php_7.0/docker-php-ext-install @@ -89,19 +89,19 @@ if [ "$pm" = 'apk' ]; then	fi fi +popDir="$PWD" for ext in $exts; do -( -cd "$ext" -[ -e Makefile ] || docker-php-ext-configure "$ext" -make -j"$j" -make -j"$j" install -find modules \ --maxdepth 1 \ --name '*.so' \ --exec basename '{}' ';' \ -| xargs -r docker-php-ext-enable -make -j"$j" clean -) +cd "$ext" +[ -e Makefile ] || docker-php-ext-configure "$ext" +make -j"$j" +make -j"$j" install +find modules \ +-maxdepth 1 \ +-name '*.so' \ +-exec basename '{}' ';' \ +| xargs -r docker-php-ext-enable +make -j"$j" clean +cd "$popDir" done if [ "$pm" = 'apk' ] && [ -n "$apkDel" ]; then diff --git a/php_alpine/docker-php-ext-configure b/php_alpine/docker-php-ext-configure index 21f4320..2a6f839 100755 --- a/php_alpine/docker-php-ext-configure +++ b/php_alpine/docker-php-ext-configure @@ -10,9 +10,10 @@ if [ -z "$srcExists" ]; then	touch /usr/src/php/.docker-delete-me fi +cd /usr/src/php/ext + ext="$1" -extDir="/usr/src/php/ext/$ext" -if [ -z "$ext" ] || [ ! -d "$extDir" ]; then +if [ -z "$ext" ] || [ ! -d "$ext" ]; then	echo >&2 "usage: $0 ext-name [configure flags]"	echo >&2 " ie: $0 gd --with-jpeg-dir=/usr/local/something"	echo >&2 @@ -46,6 +47,6 @@ if [ "$pm" = 'apk' ]; then fi set -x -cd "$extDir" +cd "$ext" phpize ./configure "$@" diff --git a/php_alpine/docker-php-ext-install b/php_alpine/docker-php-ext-install index 27955e0..79df34e 100755 --- a/php_alpine/docker-php-ext-install +++ b/php_alpine/docker-php-ext-install @@ -89,19 +89,19 @@ if [ "$pm" = 'apk' ]; then	fi fi +popDir="$PWD" for ext in $exts; do -( -cd "$ext" -[ -e Makefile ] || docker-php-ext-configure "$ext" -make -j"$j" -make -j"$j" install -find modules \ --maxdepth 1 \ --name '*.so' \ --exec basename '{}' ';' \ -| xargs -r docker-php-ext-enable -make -j"$j" clean -) +cd "$ext" +[ -e Makefile ] || docker-php-ext-configure "$ext" +make -j"$j" +make -j"$j" install +find modules \ +-maxdepth 1 \ +-name '*.so' \ +-exec basename '{}' ';' \ +| xargs -r docker-php-ext-enable +make -j"$j" clean +cd "$popDir" done if [ "$pm" = 'apk' ] && [ -n "$apkDel" ]; then diff --git a/php_apache/docker-php-ext-configure b/php_apache/docker-php-ext-configure index 21f4320..2a6f839 100755 --- a/php_apache/docker-php-ext-configure +++ b/php_apache/docker-php-ext-configure @@ -10,9 +10,10 @@ if [ -z "$srcExists" ]; then	touch /usr/src/php/.docker-delete-me fi +cd /usr/src/php/ext + ext="$1" -extDir="/usr/src/php/ext/$ext" -if [ -z "$ext" ] || [ ! -d "$extDir" ]; then +if [ -z "$ext" ] || [ ! -d "$ext" ]; then	echo >&2 "usage: $0 ext-name [configure flags]"	echo >&2 " ie: $0 gd --with-jpeg-dir=/usr/local/something"	echo >&2 @@ -46,6 +47,6 @@ if [ "$pm" = 'apk' ]; then fi set -x -cd "$extDir" +cd "$ext" phpize ./configure "$@" diff --git a/php_apache/docker-php-ext-install b/php_apache/docker-php-ext-install index 27955e0..79df34e 100755 --- a/php_apache/docker-php-ext-install +++ b/php_apache/docker-php-ext-install @@ -89,19 +89,19 @@ if [ "$pm" = 'apk' ]; then	fi fi +popDir="$PWD" for ext in $exts; do -( -cd "$ext" -[ -e Makefile ] || docker-php-ext-configure "$ext" -make -j"$j" -make -j"$j" install -find modules \ --maxdepth 1 \ --name '*.so' \ --exec basename '{}' ';' \ -| xargs -r docker-php-ext-enable -make -j"$j" clean -) +cd "$ext" +[ -e Makefile ] || docker-php-ext-configure "$ext" +make -j"$j" +make -j"$j" install +find modules \ +-maxdepth 1 \ +-name '*.so' \ +-exec basename '{}' ';' \ +| xargs -r docker-php-ext-enable +make -j"$j" clean +cd "$popDir" done if [ "$pm" = 'apk' ] && [ -n "$apkDel" ]; then diff --git a/php_fpm-alpine/docker-php-ext-configure b/php_fpm-alpine/docker-php-ext-configure index 21f4320..2a6f839 100755 --- a/php_fpm-alpine/docker-php-ext-configure +++ b/php_fpm-alpine/docker-php-ext-configure @@ -10,9 +10,10 @@ if [ -z "$srcExists" ]; then	touch /usr/src/php/.docker-delete-me fi +cd /usr/src/php/ext + ext="$1" -extDir="/usr/src/php/ext/$ext" -if [ -z "$ext" ] || [ ! -d "$extDir" ]; then +if [ -z "$ext" ] || [ ! -d "$ext" ]; then	echo >&2 "usage: $0 ext-name [configure flags]"	echo >&2 " ie: $0 gd --with-jpeg-dir=/usr/local/something"	echo >&2 @@ -46,6 +47,6 @@ if [ "$pm" = 'apk' ]; then fi set -x -cd "$extDir" +cd "$ext" phpize ./configure "$@" diff --git a/php_fpm-alpine/docker-php-ext-install b/php_fpm-alpine/docker-php-ext-install index 27955e0..79df34e 100755 --- a/php_fpm-alpine/docker-php-ext-install +++ b/php_fpm-alpine/docker-php-ext-install @@ -89,19 +89,19 @@ if [ "$pm" = 'apk' ]; then	fi fi +popDir="$PWD" for ext in $exts; do -( -cd "$ext" -[ -e Makefile ] || docker-php-ext-configure "$ext" -make -j"$j" -make -j"$j" install -find modules \ --maxdepth 1 \ --name '*.so' \ --exec basename '{}' ';' \ -| xargs -r docker-php-ext-enable -make -j"$j" clean -) +cd "$ext" +[ -e Makefile ] || docker-php-ext-configure "$ext" +make -j"$j" +make -j"$j" install +find modules \ +-maxdepth 1 \ +-name '*.so' \ +-exec basename '{}' ';' \ +| xargs -r docker-php-ext-enable +make -j"$j" clean +cd "$popDir" done if [ "$pm" = 'apk' ] && [ -n "$apkDel" ]; then diff --git a/php_fpm/docker-php-ext-configure b/php_fpm/docker-php-ext-configure index 21f4320..2a6f839 100755 --- a/php_fpm/docker-php-ext-configure +++ b/php_fpm/docker-php-ext-configure @@ -10,9 +10,10 @@ if [ -z "$srcExists" ]; then	touch /usr/src/php/.docker-delete-me fi +cd /usr/src/php/ext + ext="$1" -extDir="/usr/src/php/ext/$ext" -if [ -z "$ext" ] || [ ! -d "$extDir" ]; then +if [ -z "$ext" ] || [ ! -d "$ext" ]; then	echo >&2 "usage: $0 ext-name [configure flags]"	echo >&2 " ie: $0 gd --with-jpeg-dir=/usr/local/something"	echo >&2 @@ -46,6 +47,6 @@ if [ "$pm" = 'apk' ]; then fi set -x -cd "$extDir" +cd "$ext" phpize ./configure "$@" diff --git a/php_fpm/docker-php-ext-install b/php_fpm/docker-php-ext-install index 27955e0..79df34e 100755 --- a/php_fpm/docker-php-ext-install +++ b/php_fpm/docker-php-ext-install @@ -89,19 +89,19 @@ if [ "$pm" = 'apk' ]; then	fi fi +popDir="$PWD" for ext in $exts; do -( -cd "$ext" -[ -e Makefile ] || docker-php-ext-configure "$ext" -make -j"$j" -make -j"$j" install -find modules \ --maxdepth 1 \ --name '*.so' \ --exec basename '{}' ';' \ -| xargs -r docker-php-ext-enable -make -j"$j" clean -) +cd "$ext" +[ -e Makefile ] || docker-php-ext-configure "$ext" +make -j"$j" +make -j"$j" install +find modules \ +-maxdepth 1 \ +-name '*.so' \ +-exec basename '{}' ';' \ +| xargs -r docker-php-ext-enable +make -j"$j" clean +cd "$popDir" done if [ "$pm" = 'apk' ] && [ -n "$apkDel" ]; then diff --git a/php_latest/docker-php-ext-configure b/php_latest/docker-php-ext-configure index 21f4320..2a6f839 100755 --- a/php_latest/docker-php-ext-configure +++ b/php_latest/docker-php-ext-configure @@ -10,9 +10,10 @@ if [ -z "$srcExists" ]; then	touch /usr/src/php/.docker-delete-me fi +cd /usr/src/php/ext + ext="$1" -extDir="/usr/src/php/ext/$ext" -if [ -z "$ext" ] || [ ! -d "$extDir" ]; then +if [ -z "$ext" ] || [ ! -d "$ext" ]; then	echo >&2 "usage: $0 ext-name [configure flags]"	echo >&2 " ie: $0 gd --with-jpeg-dir=/usr/local/something"	echo >&2 @@ -46,6 +47,6 @@ if [ "$pm" = 'apk' ]; then fi set -x -cd "$extDir" +cd "$ext" phpize ./configure "$@" diff --git a/php_latest/docker-php-ext-install b/php_latest/docker-php-ext-install index 27955e0..79df34e 100755 --- a/php_latest/docker-php-ext-install +++ b/php_latest/docker-php-ext-install @@ -89,19 +89,19 @@ if [ "$pm" = 'apk' ]; then	fi fi +popDir="$PWD" for ext in $exts; do -( -cd "$ext" -[ -e Makefile ] || docker-php-ext-configure "$ext" -make -j"$j" -make -j"$j" install -find modules \ --maxdepth 1 \ --name '*.so' \ --exec basename '{}' ';' \ -| xargs -r docker-php-ext-enable -make -j"$j" clean -) +cd "$ext" +[ -e Makefile ] || docker-php-ext-configure "$ext" +make -j"$j" +make -j"$j" install +find modules \ +-maxdepth 1 \ +-name '*.so' \ +-exec basename '{}' ';' \ +| xargs -r docker-php-ext-enable +make -j"$j" clean +cd "$popDir" done if [ "$pm" = 'apk' ] && [ -n "$apkDel" ]; then diff --git a/php_zts-alpine/docker-php-ext-configure b/php_zts-alpine/docker-php-ext-configure index 21f4320..2a6f839 100755 --- a/php_zts-alpine/docker-php-ext-configure +++ b/php_zts-alpine/docker-php-ext-configure @@ -10,9 +10,10 @@ if [ -z "$srcExists" ]; then	touch /usr/src/php/.docker-delete-me fi +cd /usr/src/php/ext + ext="$1" -extDir="/usr/src/php/ext/$ext" -if [ -z "$ext" ] || [ ! -d "$extDir" ]; then +if [ -z "$ext" ] || [ ! -d "$ext" ]; then	echo >&2 "usage: $0 ext-name [configure flags]"	echo >&2 " ie: $0 gd --with-jpeg-dir=/usr/local/something"	echo >&2 @@ -46,6 +47,6 @@ if [ "$pm" = 'apk' ]; then fi set -x -cd "$extDir" +cd "$ext" phpize ./configure "$@" diff --git a/php_zts-alpine/docker-php-ext-install b/php_zts-alpine/docker-php-ext-install index 27955e0..79df34e 100755 --- a/php_zts-alpine/docker-php-ext-install +++ b/php_zts-alpine/docker-php-ext-install @@ -89,19 +89,19 @@ if [ "$pm" = 'apk' ]; then	fi fi +popDir="$PWD" for ext in $exts; do -( -cd "$ext" -[ -e Makefile ] || docker-php-ext-configure "$ext" -make -j"$j" -make -j"$j" install -find modules \ --maxdepth 1 \ --name '*.so' \ --exec basename '{}' ';' \ -| xargs -r docker-php-ext-enable -make -j"$j" clean -) +cd "$ext" +[ -e Makefile ] || docker-php-ext-configure "$ext" +make -j"$j" +make -j"$j" install +find modules \ +-maxdepth 1 \ +-name '*.so' \ +-exec basename '{}' ';' \ +| xargs -r docker-php-ext-enable +make -j"$j" clean +cd "$popDir" done if [ "$pm" = 'apk' ] && [ -n "$apkDel" ]; then diff --git a/php_zts/docker-php-ext-configure b/php_zts/docker-php-ext-configure index 21f4320..2a6f839 100755 --- a/php_zts/docker-php-ext-configure +++ b/php_zts/docker-php-ext-configure @@ -10,9 +10,10 @@ if [ -z "$srcExists" ]; then	touch /usr/src/php/.docker-delete-me fi +cd /usr/src/php/ext + ext="$1" -extDir="/usr/src/php/ext/$ext" -if [ -z "$ext" ] || [ ! -d "$extDir" ]; then +if [ -z "$ext" ] || [ ! -d "$ext" ]; then	echo >&2 "usage: $0 ext-name [configure flags]"	echo >&2 " ie: $0 gd --with-jpeg-dir=/usr/local/something"	echo >&2 @@ -46,6 +47,6 @@ if [ "$pm" = 'apk' ]; then fi set -x -cd "$extDir" +cd "$ext" phpize ./configure "$@" diff --git a/php_zts/docker-php-ext-install b/php_zts/docker-php-ext-install index 27955e0..79df34e 100755 --- a/php_zts/docker-php-ext-install +++ b/php_zts/docker-php-ext-install @@ -89,19 +89,19 @@ if [ "$pm" = 'apk' ]; then	fi fi +popDir="$PWD" for ext in $exts; do -( -cd "$ext" -[ -e Makefile ] || docker-php-ext-configure "$ext" -make -j"$j" -make -j"$j" install -find modules \ --maxdepth 1 \ --name '*.so' \ --exec basename '{}' ';' \ -| xargs -r docker-php-ext-enable -make -j"$j" clean -) +cd "$ext" +[ -e Makefile ] || docker-php-ext-configure "$ext" +make -j"$j" +make -j"$j" install +find modules \ +-maxdepth 1 \ +-name '*.so' \ +-exec basename '{}' ';' \ +| xargs -r docker-php-ext-enable +make -j"$j" clean +cd "$popDir" done if [ "$pm" = 'apk' ] && [ -n "$apkDel" ]; then diff --git a/postgres_9.2-alpine/docker-entrypoint.sh b/postgres_9.2-alpine/docker-entrypoint.sh index 36d4e65..d6586a7 100755 --- a/postgres_9.2-alpine/docker-entrypoint.sh +++ b/postgres_9.2-alpine/docker-entrypoint.sh @@ -67,7 +67,7 @@ if [ "$1" = 'postgres' ]; then	authMethod=trust	fi -{ echo; echo "host all all 0.0.0.0/0 $authMethod"; } | su-exec postgres tee -a "$PGDATA/pg_hba.conf" > /dev/null +{ echo; echo "host all all all $authMethod"; } | su-exec postgres tee -a "$PGDATA/pg_hba.conf" > /dev/null	# internal start of server in order to allow set-up using psql-client	# does not listen on external TCP/IP and waits until start finishes diff --git a/postgres_9.2/docker-entrypoint.sh b/postgres_9.2/docker-entrypoint.sh index dfbecec..2b77850 100755 --- a/postgres_9.2/docker-entrypoint.sh +++ b/postgres_9.2/docker-entrypoint.sh @@ -67,7 +67,7 @@ if [ "$1" = 'postgres' ]; then	authMethod=trust	fi -{ echo; echo "host all all 0.0.0.0/0 $authMethod"; } | gosu postgres tee -a "$PGDATA/pg_hba.conf" > /dev/null +{ echo; echo "host all all all $authMethod"; } | gosu postgres tee -a "$PGDATA/pg_hba.conf" > /dev/null	# internal start of server in order to allow set-up using psql-client	# does not listen on external TCP/IP and waits until start finishes diff --git a/postgres_9.3-alpine/docker-entrypoint.sh b/postgres_9.3-alpine/docker-entrypoint.sh index 36d4e65..d6586a7 100755 --- a/postgres_9.3-alpine/docker-entrypoint.sh +++ b/postgres_9.3-alpine/docker-entrypoint.sh @@ -67,7 +67,7 @@ if [ "$1" = 'postgres' ]; then	authMethod=trust	fi -{ echo; echo "host all all 0.0.0.0/0 $authMethod"; } | su-exec postgres tee -a "$PGDATA/pg_hba.conf" > /dev/null +{ echo; echo "host all all all $authMethod"; } | su-exec postgres tee -a "$PGDATA/pg_hba.conf" > /dev/null	# internal start of server in order to allow set-up using psql-client	# does not listen on external TCP/IP and waits until start finishes diff --git a/postgres_9.3/docker-entrypoint.sh b/postgres_9.3/docker-entrypoint.sh index dfbecec..2b77850 100755 --- a/postgres_9.3/docker-entrypoint.sh +++ b/postgres_9.3/docker-entrypoint.sh @@ -67,7 +67,7 @@ if [ "$1" = 'postgres' ]; then	authMethod=trust	fi -{ echo; echo "host all all 0.0.0.0/0 $authMethod"; } | gosu postgres tee -a "$PGDATA/pg_hba.conf" > /dev/null +{ echo; echo "host all all all $authMethod"; } | gosu postgres tee -a "$PGDATA/pg_hba.conf" > /dev/null	# internal start of server in order to allow set-up using psql-client	# does not listen on external TCP/IP and waits until start finishes diff --git a/postgres_9.4-alpine/docker-entrypoint.sh b/postgres_9.4-alpine/docker-entrypoint.sh index 36d4e65..d6586a7 100755 --- a/postgres_9.4-alpine/docker-entrypoint.sh +++ b/postgres_9.4-alpine/docker-entrypoint.sh @@ -67,7 +67,7 @@ if [ "$1" = 'postgres' ]; then	authMethod=trust	fi -{ echo; echo "host all all 0.0.0.0/0 $authMethod"; } | su-exec postgres tee -a "$PGDATA/pg_hba.conf" > /dev/null +{ echo; echo "host all all all $authMethod"; } | su-exec postgres tee -a "$PGDATA/pg_hba.conf" > /dev/null	# internal start of server in order to allow set-up using psql-client	# does not listen on external TCP/IP and waits until start finishes diff --git a/postgres_9.4/docker-entrypoint.sh b/postgres_9.4/docker-entrypoint.sh index dfbecec..2b77850 100755 --- a/postgres_9.4/docker-entrypoint.sh +++ b/postgres_9.4/docker-entrypoint.sh @@ -67,7 +67,7 @@ if [ "$1" = 'postgres' ]; then	authMethod=trust	fi -{ echo; echo "host all all 0.0.0.0/0 $authMethod"; } | gosu postgres tee -a "$PGDATA/pg_hba.conf" > /dev/null +{ echo; echo "host all all all $authMethod"; } | gosu postgres tee -a "$PGDATA/pg_hba.conf" > /dev/null	# internal start of server in order to allow set-up using psql-client	# does not listen on external TCP/IP and waits until start finishes diff --git a/postgres_9.5-alpine/docker-entrypoint.sh b/postgres_9.5-alpine/docker-entrypoint.sh index 36d4e65..d6586a7 100755 --- a/postgres_9.5-alpine/docker-entrypoint.sh +++ b/postgres_9.5-alpine/docker-entrypoint.sh @@ -67,7 +67,7 @@ if [ "$1" = 'postgres' ]; then	authMethod=trust	fi -{ echo; echo "host all all 0.0.0.0/0 $authMethod"; } | su-exec postgres tee -a "$PGDATA/pg_hba.conf" > /dev/null +{ echo; echo "host all all all $authMethod"; } | su-exec postgres tee -a "$PGDATA/pg_hba.conf" > /dev/null	# internal start of server in order to allow set-up using psql-client	# does not listen on external TCP/IP and waits until start finishes diff --git a/postgres_9.5/docker-entrypoint.sh b/postgres_9.5/docker-entrypoint.sh index dfbecec..2b77850 100755 --- a/postgres_9.5/docker-entrypoint.sh +++ b/postgres_9.5/docker-entrypoint.sh @@ -67,7 +67,7 @@ if [ "$1" = 'postgres' ]; then	authMethod=trust	fi -{ echo; echo "host all all 0.0.0.0/0 $authMethod"; } | gosu postgres tee -a "$PGDATA/pg_hba.conf" > /dev/null +{ echo; echo "host all all all $authMethod"; } | gosu postgres tee -a "$PGDATA/pg_hba.conf" > /dev/null	# internal start of server in order to allow set-up using psql-client	# does not listen on external TCP/IP and waits until start finishes diff --git a/postgres_alpine/docker-entrypoint.sh b/postgres_alpine/docker-entrypoint.sh index 36d4e65..d6586a7 100755 --- a/postgres_alpine/docker-entrypoint.sh +++ b/postgres_alpine/docker-entrypoint.sh @@ -67,7 +67,7 @@ if [ "$1" = 'postgres' ]; then	authMethod=trust	fi -{ echo; echo "host all all 0.0.0.0/0 $authMethod"; } | su-exec postgres tee -a "$PGDATA/pg_hba.conf" > /dev/null +{ echo; echo "host all all all $authMethod"; } | su-exec postgres tee -a "$PGDATA/pg_hba.conf" > /dev/null	# internal start of server in order to allow set-up using psql-client	# does not listen on external TCP/IP and waits until start finishes diff --git a/postgres_latest/docker-entrypoint.sh b/postgres_latest/docker-entrypoint.sh index dfbecec..2b77850 100755 --- a/postgres_latest/docker-entrypoint.sh +++ b/postgres_latest/docker-entrypoint.sh @@ -67,7 +67,7 @@ if [ "$1" = 'postgres' ]; then	authMethod=trust	fi -{ echo; echo "host all all 0.0.0.0/0 $authMethod"; } | gosu postgres tee -a "$PGDATA/pg_hba.conf" > /dev/null +{ echo; echo "host all all all $authMethod"; } | gosu postgres tee -a "$PGDATA/pg_hba.conf" > /dev/null	# internal start of server in order to allow set-up using psql-client	# does not listen on external TCP/IP and waits until start finishes diff --git a/rocket.chat_latest/Dockerfile b/rocket.chat_latest/Dockerfile index 4349a54..01f208f 100644 --- a/rocket.chat_latest/Dockerfile +++ b/rocket.chat_latest/Dockerfile @@ -11,7 +11,7 @@ VOLUME /app/uploads # gpg: key 4FD08014: public key "Rocket.Chat Buildmaster <buildmaster@rocket.chat>" imported RUN gpg --keyserver ha.pool.sks-keyservers.net --recv-keys 0E163286C20D07B9787EBE9FD7F9D0414FD08104 -ENV RC_VERSION 0.46.0 +ENV RC_VERSION 0.47.0 WORKDIR /app diff --git a/wordpress_php5.6-fpm/Dockerfile b/wordpress_php5.6-fpm/Dockerfile index 5c684cd..31d1cd1 100644 --- a/wordpress_php5.6-fpm/Dockerfile +++ b/wordpress_php5.6-fpm/Dockerfile @@ -18,8 +18,8 @@ RUN { \ VOLUME /var/www/html -ENV WORDPRESS_VERSION 4.6.1 -ENV WORDPRESS_SHA1 027e065d30a64720624a7404a1820e6c6fff1202 +ENV WORDPRESS_VERSION 4.7 +ENV WORDPRESS_SHA1 1e14144c4db71421dc4ed22f94c3914dfc3b7020 RUN set -x \	&& curl -o wordpress.tar.gz -fSL "https://wordpress.org/wordpress-${WORDPRESS_VERSION}.tar.gz" \ diff --git a/wordpress_php5.6/Dockerfile b/wordpress_php5.6/Dockerfile index 1a449f3..73f3cd2 100644 --- a/wordpress_php5.6/Dockerfile +++ b/wordpress_php5.6/Dockerfile @@ -20,8 +20,8 @@ RUN a2enmod rewrite expires VOLUME /var/www/html -ENV WORDPRESS_VERSION 4.6.1 -ENV WORDPRESS_SHA1 027e065d30a64720624a7404a1820e6c6fff1202 +ENV WORDPRESS_VERSION 4.7 +ENV WORDPRESS_SHA1 1e14144c4db71421dc4ed22f94c3914dfc3b7020 RUN set -x \	&& curl -o wordpress.tar.gz -fSL "https://wordpress.org/wordpress-${WORDPRESS_VERSION}.tar.gz" \ diff --git a/wordpress_php7.0-fpm/Dockerfile b/wordpress_php7.0-fpm/Dockerfile index 2927b45..609579c 100644 --- a/wordpress_php7.0-fpm/Dockerfile +++ b/wordpress_php7.0-fpm/Dockerfile @@ -18,8 +18,8 @@ RUN { \ VOLUME /var/www/html -ENV WORDPRESS_VERSION 4.6.1 -ENV WORDPRESS_SHA1 027e065d30a64720624a7404a1820e6c6fff1202 +ENV WORDPRESS_VERSION 4.7 +ENV WORDPRESS_SHA1 1e14144c4db71421dc4ed22f94c3914dfc3b7020 RUN set -x \	&& curl -o wordpress.tar.gz -fSL "https://wordpress.org/wordpress-${WORDPRESS_VERSION}.tar.gz" \ diff --git a/wordpress_php7.0/Dockerfile b/wordpress_php7.0/Dockerfile index 2de001c..fbd8419 100644 --- a/wordpress_php7.0/Dockerfile +++ b/wordpress_php7.0/Dockerfile @@ -20,8 +20,8 @@ RUN a2enmod rewrite expires VOLUME /var/www/html -ENV WORDPRESS_VERSION 4.6.1 -ENV WORDPRESS_SHA1 027e065d30a64720624a7404a1820e6c6fff1202 +ENV WORDPRESS_VERSION 4.7 +ENV WORDPRESS_SHA1 1e14144c4db71421dc4ed22f94c3914dfc3b7020 RUN set -x \	&& curl -o wordpress.tar.gz -fSL "https://wordpress.org/wordpress-${WORDPRESS_VERSION}.tar.gz" \
@tianon
Copy link
Member Author

tianon commented Dec 6, 2016

Build test of #2421; 25d68c8 (golang, php, postgres, rocket.chat, wordpress):

$ bashbrew build golang:1.6.4 Using bashbrew/cache:b4ff98df6e604b0c988351757d8cf676a93534b97a4c292d56151d8c541b3b07 (golang:1.6.4) Tagging golang:1.6.4 Tagging golang:1.6 $ test/run.sh golang:1.6.4 testing golang:1.6.4 'utc' [1/5]...passed 'cve-2014--shellshock' [2/5]...passed 'no-hard-coded-passwords' [3/5]...passed 'override-cmd' [4/5]...passed 'golang-hello-world' [5/5]...passed $ bashbrew build golang:1.6.4-onbuild Using bashbrew/cache:4634cfb420aae166546e2a8a6bdb3c8283ff32f45ead45d56dcd8c6314be1531 (golang:1.6.4-onbuild) Tagging golang:1.6.4-onbuild Tagging golang:1.6-onbuild $ test/run.sh golang:1.6.4-onbuild testing golang:1.6.4-onbuild 'override-cmd' [1/1]...passed $ bashbrew build golang:1.6.4-wheezy Using bashbrew/cache:0c9b70630b7fddafd7c7d8f094b3eb0adc2861d8fda31657732a5b06a4d60252 (golang:1.6.4-wheezy) Tagging golang:1.6.4-wheezy Tagging golang:1.6-wheezy $ test/run.sh golang:1.6.4-wheezy testing golang:1.6.4-wheezy 'utc' [1/5]...passed 'cve-2014--shellshock' [2/5]...passed 'no-hard-coded-passwords' [3/5]...passed 'override-cmd' [4/5]...passed 'golang-hello-world' [5/5]...passed $ bashbrew build golang:1.6.4-alpine Using bashbrew/cache:31371cd2c7b9cdd9bffe3bed4fbbcace5e6c275584acab99a72aae466cac83df (golang:1.6.4-alpine) Tagging golang:1.6.4-alpine Tagging golang:1.6-alpine $ test/run.sh golang:1.6.4-alpine testing golang:1.6.4-alpine 'utc' [1/5]...passed 'cve-2014--shellshock' [2/5]...passed 'no-hard-coded-passwords' [3/5]...passed 'override-cmd' [4/5]...passed 'golang-hello-world' [5/5]...passed $ bashbrew build golang:1.6.4-windowsservercore skipping "golang:1.6.4-windowsservercore" (due to unsatisfactory constraints ["windowsservercore"]) $ test/run.sh golang:1.6.4-windowsservercore testing golang:1.6.4-windowsservercore image does not exist! $ bashbrew build golang:1.6.4-nanoserver skipping "golang:1.6.4-nanoserver" (due to unsatisfactory constraints ["nanoserver"]) $ test/run.sh golang:1.6.4-nanoserver testing golang:1.6.4-nanoserver image does not exist! $ bashbrew build golang:1.7.4 Using bashbrew/cache:fb4d4349b3e65a5712abf52a5603dc28eeb8094204ab596b1356ab4fd8df0a78 (golang:1.7.4) Tagging golang:1.7.4 Tagging golang:1.7 Tagging golang:1 Tagging golang:latest $ test/run.sh golang:1.7.4 testing golang:1.7.4 'utc' [1/5]...passed 'cve-2014--shellshock' [2/5]...passed 'no-hard-coded-passwords' [3/5]...passed 'override-cmd' [4/5]...passed 'golang-hello-world' [5/5]...passed $ bashbrew build golang:1.7.4-onbuild Using bashbrew/cache:9c79b33047e5750453e2bfc46851714f7011d772a534029551a63771c0d4f100 (golang:1.7.4-onbuild) Tagging golang:1.7.4-onbuild Tagging golang:1.7-onbuild Tagging golang:1-onbuild Tagging golang:onbuild $ test/run.sh golang:1.7.4-onbuild testing golang:1.7.4-onbuild 'override-cmd' [1/1]...passed $ bashbrew build golang:1.7.4-wheezy Using bashbrew/cache:2fcebff4b050af169aa71e8ff1476a32d43054dede575903f6002da2713babc4 (golang:1.7.4-wheezy) Tagging golang:1.7.4-wheezy Tagging golang:1.7-wheezy Tagging golang:1-wheezy Tagging golang:wheezy $ test/run.sh golang:1.7.4-wheezy testing golang:1.7.4-wheezy 'utc' [1/5]...passed 'cve-2014--shellshock' [2/5]...passed 'no-hard-coded-passwords' [3/5]...passed 'override-cmd' [4/5]...passed 'golang-hello-world' [5/5]...passed $ bashbrew build golang:1.7.4-alpine Using bashbrew/cache:092374748916a1512abac9b147a6579aeccc899fdd20088e8372d571e38fd2a0 (golang:1.7.4-alpine) Tagging golang:1.7.4-alpine Tagging golang:1.7-alpine Tagging golang:1-alpine Tagging golang:alpine $ test/run.sh golang:1.7.4-alpine testing golang:1.7.4-alpine 'utc' [1/5]...passed 'cve-2014--shellshock' [2/5]...passed 'no-hard-coded-passwords' [3/5]...passed 'override-cmd' [4/5]...passed 'golang-hello-world' [5/5]...passed $ bashbrew build golang:1.7.4-windowsservercore skipping "golang:1.7.4-windowsservercore" (due to unsatisfactory constraints ["windowsservercore"]) $ test/run.sh golang:1.7.4-windowsservercore testing golang:1.7.4-windowsservercore image does not exist! $ bashbrew build golang:1.7.4-nanoserver skipping "golang:1.7.4-nanoserver" (due to unsatisfactory constraints ["nanoserver"]) $ test/run.sh golang:1.7.4-nanoserver testing golang:1.7.4-nanoserver image does not exist! $ bashbrew build golang:1.8beta1 Using bashbrew/cache:4a01e9bdb7e21a498977821e76c899e112041eef14d28df4bf6cdae47d87b4d0 (golang:1.8beta1) Tagging golang:1.8beta1 Tagging golang:1.8 $ test/run.sh golang:1.8beta1 testing golang:1.8beta1 'utc' [1/5]...passed 'cve-2014--shellshock' [2/5]...passed 'no-hard-coded-passwords' [3/5]...passed 'override-cmd' [4/5]...passed 'golang-hello-world' [5/5]...passed $ bashbrew build golang:1.8beta1-onbuild Using bashbrew/cache:f71702e31649a0667268262e28669a9d5f7d12a6597e5b9e56f69a3a904bbd5c (golang:1.8beta1-onbuild) Tagging golang:1.8beta1-onbuild Tagging golang:1.8-onbuild $ test/run.sh golang:1.8beta1-onbuild testing golang:1.8beta1-onbuild 'override-cmd' [1/1]...passed $ bashbrew build golang:1.8beta1-wheezy Using bashbrew/cache:a0cf5f076c670d99a6731d72ca91565ebb2fe41832c1a85c4fd1f99a99bf42db (golang:1.8beta1-wheezy) Tagging golang:1.8beta1-wheezy Tagging golang:1.8-wheezy $ test/run.sh golang:1.8beta1-wheezy testing golang:1.8beta1-wheezy 'utc' [1/5]...passed 'cve-2014--shellshock' [2/5]...passed 'no-hard-coded-passwords' [3/5]...passed 'override-cmd' [4/5]...passed 'golang-hello-world' [5/5]...passed $ bashbrew build golang:1.8beta1-alpine Using bashbrew/cache:a8fd9baaf9f10bcd0008f3fb58cb0c1c527f8f27b5250b016ed1452170d46c45 (golang:1.8beta1-alpine) Tagging golang:1.8beta1-alpine Tagging golang:1.8-alpine $ test/run.sh golang:1.8beta1-alpine testing golang:1.8beta1-alpine 'utc' [1/5]...passed 'cve-2014--shellshock' [2/5]...passed 'no-hard-coded-passwords' [3/5]...passed 'override-cmd' [4/5]...passed 'golang-hello-world' [5/5]...passed $ bashbrew build golang:1.8beta1-windowsservercore skipping "golang:1.8beta1-windowsservercore" (due to unsatisfactory constraints ["windowsservercore"]) $ test/run.sh golang:1.8beta1-windowsservercore testing golang:1.8beta1-windowsservercore image does not exist! $ bashbrew build golang:1.8beta1-nanoserver skipping "golang:1.8beta1-nanoserver" (due to unsatisfactory constraints ["nanoserver"]) $ test/run.sh golang:1.8beta1-nanoserver testing golang:1.8beta1-nanoserver image does not exist! 
$ bashbrew build php:7.1.0-cli Building bashbrew/cache:30f89f8b1f0f706cdbc225c74f5002e53b7cf13bd3d5bacc783c45f0b7f4e5f6 (php:7.1.0-cli) Tagging php:7.1.0-cli Tagging php:7.1-cli Tagging php:7-cli Tagging php:cli Tagging php:7.1.0 Tagging php:7.1 Tagging php:7 Tagging php:latest $ test/run.sh php:7.1.0-cli testing php:7.1.0-cli 'utc' [1/6]...passed 'cve-2014--shellshock' [2/6]...passed 'no-hard-coded-passwords' [3/6]...passed 'override-cmd' [4/6]...passed 'php-ext-install' [5/6]...passed 'php-hello-world' [6/6]...passed $ bashbrew build php:7.1.0-alpine Building bashbrew/cache:5f043190cf77ab1cdd7d251b699e69414888a9376af9856bae116dc269701bed (php:7.1.0-alpine) Tagging php:7.1.0-alpine Tagging php:7.1-alpine Tagging php:7-alpine Tagging php:alpine $ test/run.sh php:7.1.0-alpine testing php:7.1.0-alpine 'utc' [1/6]...passed 'cve-2014--shellshock' [2/6]...passed 'no-hard-coded-passwords' [3/6]...passed 'override-cmd' [4/6]...passed 'php-ext-install' [5/6]...passed 'php-hello-world' [6/6]...passed $ bashbrew build php:7.1.0-apache Building bashbrew/cache:8485311ae9674e03d93ed7cd43db78be79671728ab03465fe0b6ca52beaa294f (php:7.1.0-apache) Tagging php:7.1.0-apache Tagging php:7.1-apache Tagging php:7-apache Tagging php:apache $ test/run.sh php:7.1.0-apache testing php:7.1.0-apache 'utc' [1/7]...passed 'cve-2014--shellshock' [2/7]...passed 'no-hard-coded-passwords' [3/7]...passed 'override-cmd' [4/7]...passed 'php-ext-install' [5/7]...passed 'php-hello-world' [6/7]...passed 'php-apache-hello-web' [7/7]...passed $ bashbrew build php:7.1.0-fpm Building bashbrew/cache:81013fc3bbab677022eb47303fd00b40d39d73eaf08ab412a8d3301e8412013e (php:7.1.0-fpm) Tagging php:7.1.0-fpm Tagging php:7.1-fpm Tagging php:7-fpm Tagging php:fpm $ test/run.sh php:7.1.0-fpm testing php:7.1.0-fpm 'utc' [1/7]...passed 'cve-2014--shellshock' [2/7]...passed 'no-hard-coded-passwords' [3/7]...passed 'override-cmd' [4/7]...passed 'php-ext-install' [5/7]...passed 'php-hello-world' [6/7]...passed 'php-fpm-hello-web' [7/7]...passed $ bashbrew build php:7.1.0-fpm-alpine Building bashbrew/cache:3c85e6d621f09cb59de81e113d3756f7be0565579474564ed0aec6c05dca5232 (php:7.1.0-fpm-alpine) Tagging php:7.1.0-fpm-alpine Tagging php:7.1-fpm-alpine Tagging php:7-fpm-alpine Tagging php:fpm-alpine $ test/run.sh php:7.1.0-fpm-alpine testing php:7.1.0-fpm-alpine 'utc' [1/6]...passed 'cve-2014--shellshock' [2/6]...passed 'no-hard-coded-passwords' [3/6]...passed 'override-cmd' [4/6]...passed 'php-ext-install' [5/6]...passed 'php-hello-world' [6/6]...passed $ bashbrew build php:7.1.0-zts Building bashbrew/cache:ff8863780dcd6cda9f3cde7d0542eedfd036883e7df37da4386d2f581be61a79 (php:7.1.0-zts) Tagging php:7.1.0-zts Tagging php:7.1-zts Tagging php:7-zts Tagging php:zts $ test/run.sh php:7.1.0-zts testing php:7.1.0-zts 'utc' [1/6]...passed 'cve-2014--shellshock' [2/6]...passed 'no-hard-coded-passwords' [3/6]...passed 'override-cmd' [4/6]...passed 'php-ext-install' [5/6]...passed 'php-hello-world' [6/6]...passed $ bashbrew build php:7.1.0-zts-alpine Building bashbrew/cache:5f57309d77d7231fdf7538403f9e9b31940e1491139647d9bf7e517cc97e56fa (php:7.1.0-zts-alpine) Tagging php:7.1.0-zts-alpine Tagging php:7.1-zts-alpine Tagging php:7-zts-alpine Tagging php:zts-alpine $ test/run.sh php:7.1.0-zts-alpine testing php:7.1.0-zts-alpine 'utc' [1/6]...passed 'cve-2014--shellshock' [2/6]...passed 'no-hard-coded-passwords' [3/6]...passed 'override-cmd' [4/6]...passed 'php-ext-install' [5/6]...passed 'php-hello-world' [6/6]...passed $ bashbrew build php:7.0.13-cli Building bashbrew/cache:2d4bf644db0f6f219b9571e12df9da9a2e21898de49b16508bebe455ddbea411 (php:7.0.13-cli) Tagging php:7.0.13-cli Tagging php:7.0-cli Tagging php:7.0.13 Tagging php:7.0 $ test/run.sh php:7.0.13-cli testing php:7.0.13-cli 'utc' [1/6]...passed 'cve-2014--shellshock' [2/6]...passed 'no-hard-coded-passwords' [3/6]...passed 'override-cmd' [4/6]...passed 'php-ext-install' [5/6]...passed 'php-hello-world' [6/6]...passed $ bashbrew build php:7.0.13-alpine Building bashbrew/cache:8b67d952ceca6b5b968f50b53c8cb9205492b0784cb674e7faa57c1e343dadc2 (php:7.0.13-alpine) Tagging php:7.0.13-alpine Tagging php:7.0-alpine $ test/run.sh php:7.0.13-alpine testing php:7.0.13-alpine 'utc' [1/6]...passed 'cve-2014--shellshock' [2/6]...passed 'no-hard-coded-passwords' [3/6]...passed 'override-cmd' [4/6]...passed 'php-ext-install' [5/6]...passed 'php-hello-world' [6/6]...passed $ bashbrew build php:7.0.13-apache Building bashbrew/cache:fd4761b23559943e793effccf7f03bd4c80818a41cf28c04909c6d300d31c72f (php:7.0.13-apache) Tagging php:7.0.13-apache Tagging php:7.0-apache $ test/run.sh php:7.0.13-apache testing php:7.0.13-apache 'utc' [1/7]...passed 'cve-2014--shellshock' [2/7]...passed 'no-hard-coded-passwords' [3/7]...passed 'override-cmd' [4/7]...passed 'php-ext-install' [5/7]...passed 'php-hello-world' [6/7]...passed 'php-apache-hello-web' [7/7]...passed $ bashbrew build php:7.0.13-fpm Building bashbrew/cache:3a22ffc024b24b65f87cc7b3ffcdbf472de9fbc976d425f8967aa648f728c549 (php:7.0.13-fpm) Tagging php:7.0.13-fpm Tagging php:7.0-fpm $ test/run.sh php:7.0.13-fpm testing php:7.0.13-fpm 'utc' [1/7]...passed 'cve-2014--shellshock' [2/7]...passed 'no-hard-coded-passwords' [3/7]...passed 'override-cmd' [4/7]...passed 'php-ext-install' [5/7]...passed 'php-hello-world' [6/7]...passed 'php-fpm-hello-web' [7/7]...passed $ bashbrew build php:7.0.13-fpm-alpine Building bashbrew/cache:4f47abe648f7141b4f27209dd0ab9306818c9365cce9eb096718fd9f9d92f5c9 (php:7.0.13-fpm-alpine) Tagging php:7.0.13-fpm-alpine Tagging php:7.0-fpm-alpine $ test/run.sh php:7.0.13-fpm-alpine testing php:7.0.13-fpm-alpine 'utc' [1/6]...passed 'cve-2014--shellshock' [2/6]...passed 'no-hard-coded-passwords' [3/6]...passed 'override-cmd' [4/6]...passed 'php-ext-install' [5/6]...passed 'php-hello-world' [6/6]...passed $ bashbrew build php:7.0.13-zts Building bashbrew/cache:1dbd50c2db4ff7a47061a65d4b5ea97b76cd3565c1730d4dc5d1a0be601dbca0 (php:7.0.13-zts) Tagging php:7.0.13-zts Tagging php:7.0-zts $ test/run.sh php:7.0.13-zts testing php:7.0.13-zts 'utc' [1/6]...passed 'cve-2014--shellshock' [2/6]...passed 'no-hard-coded-passwords' [3/6]...passed 'override-cmd' [4/6]...passed 'php-ext-install' [5/6]...passed 'php-hello-world' [6/6]...passed $ bashbrew build php:7.0.13-zts-alpine Building bashbrew/cache:20c0eb86c505b6700bbd21a9dcb4437e87e7d5c2e20217acec84760048687b81 (php:7.0.13-zts-alpine) Tagging php:7.0.13-zts-alpine Tagging php:7.0-zts-alpine $ test/run.sh php:7.0.13-zts-alpine testing php:7.0.13-zts-alpine 'utc' [1/6]...passed 'cve-2014--shellshock' [2/6]...passed 'no-hard-coded-passwords' [3/6]...passed 'override-cmd' [4/6]...passed 'php-ext-install' [5/6]...passed 'php-hello-world' [6/6]...passed $ bashbrew build php:5.6.28-cli Building bashbrew/cache:96e09b6706b6dc15fef74b12976c162884bc144685bb8c119710d0ab5d3a91d8 (php:5.6.28-cli) Tagging php:5.6.28-cli Tagging php:5.6-cli Tagging php:5-cli Tagging php:5.6.28 Tagging php:5.6 Tagging php:5 $ test/run.sh php:5.6.28-cli testing php:5.6.28-cli 'utc' [1/6]...passed 'cve-2014--shellshock' [2/6]...passed 'no-hard-coded-passwords' [3/6]...passed 'override-cmd' [4/6]...passed 'php-ext-install' [5/6]...passed 'php-hello-world' [6/6]...passed $ bashbrew build php:5.6.28-alpine Building bashbrew/cache:ddb8471f83b0e30deda77b9a0e7cc4594ffd276f02d64431f9e4651014ab796f (php:5.6.28-alpine) Tagging php:5.6.28-alpine Tagging php:5.6-alpine Tagging php:5-alpine $ test/run.sh php:5.6.28-alpine testing php:5.6.28-alpine 'utc' [1/6]...passed 'cve-2014--shellshock' [2/6]...passed 'no-hard-coded-passwords' [3/6]...passed 'override-cmd' [4/6]...passed 'php-ext-install' [5/6]...passed 'php-hello-world' [6/6]...passed $ bashbrew build php:5.6.28-apache Building bashbrew/cache:3c6ee0a65e98c7ba33ba7c3cc6bde517a0c49c394de10bfd8fca24447e6965a7 (php:5.6.28-apache) Tagging php:5.6.28-apache Tagging php:5.6-apache Tagging php:5-apache $ test/run.sh php:5.6.28-apache testing php:5.6.28-apache 'utc' [1/7]...passed 'cve-2014--shellshock' [2/7]...passed 'no-hard-coded-passwords' [3/7]...passed 'override-cmd' [4/7]...passed 'php-ext-install' [5/7]...passed 'php-hello-world' [6/7]...passed 'php-apache-hello-web' [7/7]...passed $ bashbrew build php:5.6.28-fpm Building bashbrew/cache:430bdff28cb963dc3120dc8fd73c36051df9b3de4d357eae04c5d9623a52f6a5 (php:5.6.28-fpm) Tagging php:5.6.28-fpm Tagging php:5.6-fpm Tagging php:5-fpm $ test/run.sh php:5.6.28-fpm testing php:5.6.28-fpm 'utc' [1/7]...passed 'cve-2014--shellshock' [2/7]...passed 'no-hard-coded-passwords' [3/7]...passed 'override-cmd' [4/7]...passed 'php-ext-install' [5/7]...passed 'php-hello-world' [6/7]...passed 'php-fpm-hello-web' [7/7]...passed $ bashbrew build php:5.6.28-fpm-alpine Building bashbrew/cache:718f7c8459b4017cc16f7871825848a06f16af637117873350b46964a962b14d (php:5.6.28-fpm-alpine) Tagging php:5.6.28-fpm-alpine Tagging php:5.6-fpm-alpine Tagging php:5-fpm-alpine $ test/run.sh php:5.6.28-fpm-alpine testing php:5.6.28-fpm-alpine 'utc' [1/6]...passed 'cve-2014--shellshock' [2/6]...passed 'no-hard-coded-passwords' [3/6]...passed 'override-cmd' [4/6]...passed 'php-ext-install' [5/6]...passed 'php-hello-world' [6/6]...passed $ bashbrew build php:5.6.28-zts Building bashbrew/cache:576ecdd1ecf8f782134c0a3d7a0a37f8b29a662d10a0faf79ec423812f0c9db1 (php:5.6.28-zts) Tagging php:5.6.28-zts Tagging php:5.6-zts Tagging php:5-zts $ test/run.sh php:5.6.28-zts testing php:5.6.28-zts 'utc' [1/6]...passed 'cve-2014--shellshock' [2/6]...passed 'no-hard-coded-passwords' [3/6]...passed 'override-cmd' [4/6]...passed 'php-ext-install' [5/6]...passed 'php-hello-world' [6/6]...passed $ bashbrew build php:5.6.28-zts-alpine Building bashbrew/cache:5bce4ee1752277579a69127c30cf8a2307bacaa5a48a614bedfc25abc1463568 (php:5.6.28-zts-alpine) Tagging php:5.6.28-zts-alpine Tagging php:5.6-zts-alpine Tagging php:5-zts-alpine $ test/run.sh php:5.6.28-zts-alpine testing php:5.6.28-zts-alpine 'utc' [1/6]...passed 'cve-2014--shellshock' [2/6]...passed 'no-hard-coded-passwords' [3/6]...passed 'override-cmd' [4/6]...passed 'php-ext-install' [5/6]...passed 'php-hello-world' [6/6]...passed 
$ bashbrew build postgres:9.6.1 Building bashbrew/cache:88c87ff11de51d8c32bb122fa34f2d6028a816314b7f864c5ece15d8a609d031 (postgres:9.6.1) Tagging postgres:9.6.1 Tagging postgres:9.6 Tagging postgres:9 Tagging postgres:latest $ test/run.sh postgres:9.6.1 testing postgres:9.6.1 'utc' [1/6]...passed 'cve-2014--shellshock' [2/6]...passed 'no-hard-coded-passwords' [3/6]...passed 'override-cmd' [4/6]...passed 'postgres-basics' [5/6].....passed 'postgres-initdb' [6/6].....passed $ bashbrew build postgres:9.6.1-alpine Building bashbrew/cache:3608413872bd85706cb6bc43a94ef898680ddc5ab851f34b414bcbc0185f0463 (postgres:9.6.1-alpine) Tagging postgres:9.6.1-alpine Tagging postgres:9.6-alpine Tagging postgres:9-alpine Tagging postgres:alpine $ test/run.sh postgres:9.6.1-alpine testing postgres:9.6.1-alpine 'utc' [1/6]...passed 'cve-2014--shellshock' [2/6]...passed 'no-hard-coded-passwords' [3/6]...passed 'override-cmd' [4/6]...passed 'postgres-basics' [5/6].....passed 'postgres-initdb' [6/6].....passed $ bashbrew build postgres:9.5.5 Building bashbrew/cache:f5059441a5ee9c743c0ab7aab5803e8c2999527880dd296d5f066a957759e9b1 (postgres:9.5.5) Tagging postgres:9.5.5 Tagging postgres:9.5 $ test/run.sh postgres:9.5.5 testing postgres:9.5.5 'utc' [1/6]...passed 'cve-2014--shellshock' [2/6]...passed 'no-hard-coded-passwords' [3/6]...passed 'override-cmd' [4/6]...passed 'postgres-basics' [5/6].....passed 'postgres-initdb' [6/6].....passed $ bashbrew build postgres:9.5.5-alpine Building bashbrew/cache:a219e644080643cece35fec0a918c5c94b4d9fa25ebc0a74bbe4155f999ebae1 (postgres:9.5.5-alpine) Tagging postgres:9.5.5-alpine Tagging postgres:9.5-alpine $ test/run.sh postgres:9.5.5-alpine testing postgres:9.5.5-alpine 'utc' [1/6]...passed 'cve-2014--shellshock' [2/6]...passed 'no-hard-coded-passwords' [3/6]...passed 'override-cmd' [4/6]...passed 'postgres-basics' [5/6].....passed 'postgres-initdb' [6/6].....passed $ bashbrew build postgres:9.4.10 Building bashbrew/cache:fe090f75d69dadacb6976c6658ec2c48f941b1dd393f8f3aa473373c2dbd093c (postgres:9.4.10) Tagging postgres:9.4.10 Tagging postgres:9.4 $ test/run.sh postgres:9.4.10 testing postgres:9.4.10 'utc' [1/6]...passed 'cve-2014--shellshock' [2/6]...passed 'no-hard-coded-passwords' [3/6]...passed 'override-cmd' [4/6]...passed 'postgres-basics' [5/6].....passed 'postgres-initdb' [6/6].....passed $ bashbrew build postgres:9.4.10-alpine Building bashbrew/cache:3b680407da7f0e0d692d2b1cf25e455ac86dc2c786e061b987c2aae20678408f (postgres:9.4.10-alpine) Tagging postgres:9.4.10-alpine Tagging postgres:9.4-alpine $ test/run.sh postgres:9.4.10-alpine testing postgres:9.4.10-alpine 'utc' [1/6]...passed 'cve-2014--shellshock' [2/6]...passed 'no-hard-coded-passwords' [3/6]...passed 'override-cmd' [4/6]...passed 'postgres-basics' [5/6].....passed 'postgres-initdb' [6/6].....passed $ bashbrew build postgres:9.3.15 Building bashbrew/cache:4d474b6861994a50536c785a7a2d52a76ccfea40a4b6b06b89c381ab82c2c390 (postgres:9.3.15) Tagging postgres:9.3.15 Tagging postgres:9.3 $ test/run.sh postgres:9.3.15 testing postgres:9.3.15 'utc' [1/6]...passed 'cve-2014--shellshock' [2/6]...passed 'no-hard-coded-passwords' [3/6]...passed 'override-cmd' [4/6]...passed 'postgres-basics' [5/6].....passed 'postgres-initdb' [6/6].....passed $ bashbrew build postgres:9.3.15-alpine Building bashbrew/cache:e5bfad57e3cd26ad1e9009557ea5fbcf6e21132f270ed21eaae0cf30f472ff5f (postgres:9.3.15-alpine) Tagging postgres:9.3.15-alpine Tagging postgres:9.3-alpine $ test/run.sh postgres:9.3.15-alpine testing postgres:9.3.15-alpine 'utc' [1/6]...passed 'cve-2014--shellshock' [2/6]...passed 'no-hard-coded-passwords' [3/6]...passed 'override-cmd' [4/6]...passed 'postgres-basics' [5/6].....passed 'postgres-initdb' [6/6].....passed $ bashbrew build postgres:9.2.19 Building bashbrew/cache:0a884d5a8f078c2e8265d83b04f80de4243751f7cb08ec986715f99014ee7016 (postgres:9.2.19) Tagging postgres:9.2.19 Tagging postgres:9.2 $ test/run.sh postgres:9.2.19 testing postgres:9.2.19 'utc' [1/6]...passed 'cve-2014--shellshock' [2/6]...passed 'no-hard-coded-passwords' [3/6]...passed 'override-cmd' [4/6]...passed 'postgres-basics' [5/6].....passed 'postgres-initdb' [6/6].....passed $ bashbrew build postgres:9.2.19-alpine Building bashbrew/cache:1260f68bffd26f586ba38d4176c9ce9c565034a47bf61d0bdb4dfb6c84afa2fc (postgres:9.2.19-alpine) Tagging postgres:9.2.19-alpine Tagging postgres:9.2-alpine $ test/run.sh postgres:9.2.19-alpine testing postgres:9.2.19-alpine 'utc' [1/6]...passed 'cve-2014--shellshock' [2/6]...passed 'no-hard-coded-passwords' [3/6]...passed 'override-cmd' [4/6]...passed 'postgres-basics' [5/6].....passed 'postgres-initdb' [6/6].....passed 
$ bashbrew build rocket.chat:0.47.0 Building bashbrew/cache:508c47ee442fff4da49103bc8bd711de6e7edf60c506cecf53821691d803716d (rocket.chat:0.47.0) Tagging rocket.chat:0.47.0 Tagging rocket.chat:0.47 Tagging rocket.chat:0 Tagging rocket.chat:latest $ test/run.sh rocket.chat:0.47.0 testing rocket.chat:0.47.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 wordpress:4.7.0-apache Building bashbrew/cache:0eb97fd3853db725122114b4334741ca2568374521da60426b4b569f3e55d19a (wordpress:4.7.0-apache) Tagging wordpress:4.7.0-apache Tagging wordpress:4.7-apache Tagging wordpress:4-apache Tagging wordpress:apache Tagging wordpress:4.7.0 Tagging wordpress:4.7 Tagging wordpress:4 Tagging wordpress:latest Tagging wordpress:4.7.0-php5.6-apache Tagging wordpress:4.7-php5.6-apache Tagging wordpress:4-php5.6-apache Tagging wordpress:php5.6-apache Tagging wordpress:4.7.0-php5.6 Tagging wordpress:4.7-php5.6 Tagging wordpress:4-php5.6 Tagging wordpress:php5.6 $ test/run.sh wordpress:4.7.0-apache testing wordpress:4.7.0-apache 'utc' [1/4]...passed 'cve-2014--shellshock' [2/4]...passed 'no-hard-coded-passwords' [3/4]...passed 'override-cmd' [4/4]...passed $ bashbrew build wordpress:4.7.0-fpm Building bashbrew/cache:5a3e8485281867f1f5a7d2a6bca225f3700bd42da3c17d58a51946426b84e4e0 (wordpress:4.7.0-fpm) Tagging wordpress:4.7.0-fpm Tagging wordpress:4.7-fpm Tagging wordpress:4-fpm Tagging wordpress:fpm Tagging wordpress:4.7.0-php5.6-fpm Tagging wordpress:4.7-php5.6-fpm Tagging wordpress:4-php5.6-fpm Tagging wordpress:php5.6-fpm $ test/run.sh wordpress:4.7.0-fpm testing wordpress:4.7.0-fpm 'utc' [1/4]...passed 'cve-2014--shellshock' [2/4]...passed 'no-hard-coded-passwords' [3/4]...passed 'override-cmd' [4/4]...passed $ bashbrew build wordpress:4.7.0-php7.0-apache Building bashbrew/cache:298af89166f20131ecd2e5bb7ea8f86ab8fe6f6b0dc0bf64917966af162c1d65 (wordpress:4.7.0-php7.0-apache) Tagging wordpress:4.7.0-php7.0-apache Tagging wordpress:4.7-php7.0-apache Tagging wordpress:4-php7.0-apache Tagging wordpress:php7.0-apache Tagging wordpress:4.7.0-php7.0 Tagging wordpress:4.7-php7.0 Tagging wordpress:4-php7.0 Tagging wordpress:php7.0 $ test/run.sh wordpress:4.7.0-php7.0-apache testing wordpress:4.7.0-php7.0-apache 'utc' [1/4]...passed 'cve-2014--shellshock' [2/4]...passed 'no-hard-coded-passwords' [3/4]...passed 'override-cmd' [4/4]...passed $ bashbrew build wordpress:4.7.0-php7.0-fpm Building bashbrew/cache:48d290625e4a7d09a94337bf636fc58b6c388a13958a2eb638ccc391d1593257 (wordpress:4.7.0-php7.0-fpm) Tagging wordpress:4.7.0-php7.0-fpm Tagging wordpress:4.7-php7.0-fpm Tagging wordpress:4-php7.0-fpm Tagging wordpress:php7.0-fpm $ test/run.sh wordpress:4.7.0-php7.0-fpm testing wordpress:4.7.0-php7.0-fpm 'utc' [1/4]...passed 'cve-2014--shellshock' [2/4]...passed 'no-hard-coded-passwords' [3/4]...passed 'override-cmd' [4/4]...passed 

The following images failed at least one test: golang:1.6.4-windowsservercore golang:1.6.4-nanoserver golang:1.7.4-windowsservercore golang:1.7.4-nanoserver golang:1.8beta1-windowsservercore golang:1.8beta1-nanoserver

@tianon
Copy link
Member Author

tianon commented Dec 6, 2016

$ bashbrew build https://raw.githubusercontent.com/infosiftr/stackbrew/update-docker-library/library/golang 2>/dev/null Building bashbrew/cache:737f90c7e5aae2ad615f0da9e9b7196affac29f47b25be4f9c63c8476599adaf (golang:1.6.4-windowsservercore) Tagging golang:1.6.4-windowsservercore Tagging golang:1.6-windowsservercore Using bashbrew/cache:f2b94de600eb75e19d79a4699fcd96921878d6b5cff0936c61252e6d68c784bc (golang:1.6.4-nanoserver) Tagging golang:1.6.4-nanoserver Tagging golang:1.6-nanoserver Building bashbrew/cache:b45b234546c4bcfac3d3d5f03026b6108efbe1ccf0705aad823e00e19894d2c4 (golang:1.7.4-windowsservercore) Tagging golang:1.7.4-windowsservercore Tagging golang:1.7-windowsservercore Tagging golang:1-windowsservercore Tagging golang:windowsservercore Using bashbrew/cache:931c3f09d00fb546de71e37529cb3f7fdef2cc732a22dddcec88a8af9b055ac2 (golang:1.7.4-nanoserver) Tagging golang:1.7.4-nanoserver Tagging golang:1.7-nanoserver Tagging golang:1-nanoserver Tagging golang:nanoserver Building bashbrew/cache:15638684b69e8850af50ec6d3cddb326beeef0eb846b551882ed503ae7d01648 (golang:1.8beta1-windowsservercore) Tagging golang:1.8beta1-windowsservercore Tagging golang:1.8-windowsservercore Using bashbrew/cache:2867fe17bc46e1c94500c88bf0e12bdc6af0acef4a6e781b30deac1ea49c8822 (golang:1.8beta1-nanoserver) Tagging golang:1.8beta1-nanoserver Tagging golang:1.8-nanoserver
@yosifkit yosifkit merged commit a687a14 into docker-library:master Dec 6, 2016
@yosifkit yosifkit deleted the update-docker-library branch December 6, 2016 23:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment