Jelajahi Sumber

Run update-tag-details.sh

Docker Library Bot 9 tahun lalu
induk
melakukan
0167f975f7
3 mengubah file dengan 30 tambahan dan 925 penghapusan
  1. 9 404
      django/tag-details.md
  2. 12 291
      golang/tag-details.md
  3. 9 230
      redis/tag-details.md

+ 9 - 404
django/tag-details.md

@@ -2,159 +2,22 @@
 
 # Tags of `django`
 
--	[`django:1.9.8-python3`](#django198-python3)
--	[`django:1.9-python3`](#django19-python3)
+-	[`django:1.10-python3`](#django110-python3)
 -	[`django:1-python3`](#django1-python3)
 -	[`django:python3`](#djangopython3)
--	[`django:1.9.8`](#django198)
--	[`django:1.9`](#django19)
+-	[`django:1.10`](#django110)
 -	[`django:1`](#django1)
 -	[`django:latest`](#djangolatest)
 -	[`django:python3-onbuild`](#djangopython3-onbuild)
 -	[`django:onbuild`](#djangoonbuild)
--	[`django:1.9.8-python2`](#django198-python2)
--	[`django:1.9-python2`](#django19-python2)
+-	[`django:1.10-python2`](#django110-python2)
 -	[`django:1-python2`](#django1-python2)
 -	[`django:python2`](#djangopython2)
 -	[`django:python2-onbuild`](#djangopython2-onbuild)
 
-## `django:1.9.8-python3`
+## `django:1.10-python3`
 
-```console
-$ docker pull django@sha256:212196c2c7854e10b29aa417246690fbb029011131358fd1f3949d9489062b9e
-```
-
--	Platforms:
-	-	linux; amd64
-
-### `django:1.9.8-python3` - linux; amd64
-
--	Docker Version: 1.10.3
--	Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json`
--	Total Size: **157.5 MB (157543050 bytes)**  
-	(compressed transfer size, not on-disk size)
--	Image ID: `sha256:7c1a3ee4db99e10d2943efcc16e9c4f6ff711f127b889925037c221c92656194`
--	Default Command: `["python3"]`
-
-```dockerfile
-# Thu, 09 Jun 2016 21:28:42 GMT
-ADD file:76679eeb94129df23c99013487d6b6bd779d2107bf07d194a524fdbb6a961530 in /
-# Thu, 09 Jun 2016 21:28:43 GMT
-CMD ["/bin/bash"]
-# Fri, 10 Jun 2016 18:44:45 GMT
-RUN apt-get purge -y python.*
-# Fri, 10 Jun 2016 18:44:45 GMT
-ENV LANG=C.UTF-8
-# Fri, 10 Jun 2016 20:30:15 GMT
-RUN apt-get update && apt-get install -y --no-install-recommends 		ca-certificates 		libsqlite3-0 		libssl1.0.0 	&& rm -rf /var/lib/apt/lists/*
-# Fri, 10 Jun 2016 20:47:20 GMT
-ENV GPG_KEY=97FC712E4C024BBEA48A61ED3A5CA953F73C700D
-# Tue, 28 Jun 2016 23:12:36 GMT
-ENV PYTHON_VERSION=3.4.5
-# Tue, 28 Jun 2016 23:12:36 GMT
-ENV PYTHON_PIP_VERSION=8.1.2
-# Tue, 19 Jul 2016 20:58:06 GMT
-RUN set -ex 	&& buildDeps=' 		curl 		gcc 		libbz2-dev 		libc6-dev 		liblzma-dev 		libncurses-dev 		libreadline-dev 		libsqlite3-dev 		libssl-dev 		make 		tcl-dev 		tk-dev 		xz-utils 		zlib1g-dev 	' 	&& apt-get update && apt-get install -y $buildDeps --no-install-recommends && rm -rf /var/lib/apt/lists/* 	&& curl -fSL "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz" -o python.tar.xz 	&& curl -fSL "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc" -o python.tar.xz.asc 	&& export GNUPGHOME="$(mktemp -d)" 	&& gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$GPG_KEY" 	&& gpg --batch --verify python.tar.xz.asc python.tar.xz 	&& rm -r "$GNUPGHOME" python.tar.xz.asc 	&& mkdir -p /usr/src/python 	&& tar -xJC /usr/src/python --strip-components=1 -f python.tar.xz 	&& rm python.tar.xz 		&& cd /usr/src/python 	&& ./configure 		--enable-loadable-sqlite-extensions 		--enable-shared 	&& make -j$(nproc) 	&& make install 	&& ldconfig 	&& pip3 install --no-cache-dir --upgrade pip==$PYTHON_PIP_VERSION 	&& [ "$(pip list | awk -F '[ ()]+' '$1 == "pip" { print $2; exit }')" = "$PYTHON_PIP_VERSION" ] 	&& find /usr/local -depth 		\( 		    \( -type d -a -name test -o -name tests \) 		    -o 		    \( -type f -a -name '*.pyc' -o -name '*.pyo' \) 		\) -exec rm -rf '{}' + 	&& apt-get purge -y --auto-remove $buildDeps 	&& rm -rf /usr/src/python ~/.cache
-# Tue, 19 Jul 2016 20:58:08 GMT
-RUN cd /usr/local/bin 	&& ln -s easy_install-3.4 easy_install 	&& ln -s idle3 idle 	&& ln -s pydoc3 pydoc 	&& ln -s python3 python 	&& ln -s python3-config python-config
-# Tue, 19 Jul 2016 20:58:08 GMT
-CMD ["python3"]
-# Tue, 19 Jul 2016 23:14:33 GMT
-RUN apt-get update && apt-get install -y 		gcc 		gettext 		mysql-client libmysqlclient-dev 		postgresql-client libpq-dev 		sqlite3 	--no-install-recommends && rm -rf /var/lib/apt/lists/*
-# Tue, 19 Jul 2016 23:14:35 GMT
-ENV DJANGO_VERSION=1.9.8
-# Tue, 19 Jul 2016 23:15:25 GMT
-RUN pip install mysqlclient psycopg2 django=="$DJANGO_VERSION"
-```
-
--	Layers:
-	-	`sha256:5c90d4a2d1a8dfffd05ff2dd659923f0ca2d843b5e45d030e17abbcd06a11b5b`  
-		Last Modified: Thu, 09 Jun 2016 21:30:47 GMT  
-		Size: 51.4 MB (51352535 bytes)
-	-	`sha256:2ab25b944ecb380e724354cdbaa45cd1de6405ad91c89dd6b3de2a5021edd42f`  
-		Last Modified: Tue, 28 Jun 2016 23:30:34 GMT  
-		Size: 3.3 MB (3336139 bytes)
-	-	`sha256:94e7dc228a5a871bf1b01ae47c271cd97dbb6d3e0da6b683e03006142d9c8ede`  
-		Last Modified: Tue, 19 Jul 2016 21:45:13 GMT  
-		Size: 21.6 MB (21623305 bytes)
-	-	`sha256:55f3beb061850ce0e0ad7ff92c12000fc3bb429adbc1d76781a9ff04fc681ddc`  
-		Last Modified: Tue, 19 Jul 2016 21:45:01 GMT  
-		Size: 267.0 B
-	-	`sha256:e8a89962efe9bfbaee595484051370421489b22f0aa47d1c3932bd365046b7cc`  
-		Last Modified: Tue, 19 Jul 2016 23:16:08 GMT  
-		Size: 66.2 MB (66239813 bytes)
-	-	`sha256:3348f9b391af36ead35b860adb98aed1198da3eb208f11f77bb90fcb75ce8f7b`  
-		Last Modified: Tue, 19 Jul 2016 23:15:44 GMT  
-		Size: 15.0 MB (14990991 bytes)
-
-## `django:1.9-python3`
-
-```console
-$ docker pull django@sha256:212196c2c7854e10b29aa417246690fbb029011131358fd1f3949d9489062b9e
-```
-
--	Platforms:
-	-	linux; amd64
-
-### `django:1.9-python3` - linux; amd64
-
--	Docker Version: 1.10.3
--	Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json`
--	Total Size: **157.5 MB (157543050 bytes)**  
-	(compressed transfer size, not on-disk size)
--	Image ID: `sha256:7c1a3ee4db99e10d2943efcc16e9c4f6ff711f127b889925037c221c92656194`
--	Default Command: `["python3"]`
-
-```dockerfile
-# Thu, 09 Jun 2016 21:28:42 GMT
-ADD file:76679eeb94129df23c99013487d6b6bd779d2107bf07d194a524fdbb6a961530 in /
-# Thu, 09 Jun 2016 21:28:43 GMT
-CMD ["/bin/bash"]
-# Fri, 10 Jun 2016 18:44:45 GMT
-RUN apt-get purge -y python.*
-# Fri, 10 Jun 2016 18:44:45 GMT
-ENV LANG=C.UTF-8
-# Fri, 10 Jun 2016 20:30:15 GMT
-RUN apt-get update && apt-get install -y --no-install-recommends 		ca-certificates 		libsqlite3-0 		libssl1.0.0 	&& rm -rf /var/lib/apt/lists/*
-# Fri, 10 Jun 2016 20:47:20 GMT
-ENV GPG_KEY=97FC712E4C024BBEA48A61ED3A5CA953F73C700D
-# Tue, 28 Jun 2016 23:12:36 GMT
-ENV PYTHON_VERSION=3.4.5
-# Tue, 28 Jun 2016 23:12:36 GMT
-ENV PYTHON_PIP_VERSION=8.1.2
-# Tue, 19 Jul 2016 20:58:06 GMT
-RUN set -ex 	&& buildDeps=' 		curl 		gcc 		libbz2-dev 		libc6-dev 		liblzma-dev 		libncurses-dev 		libreadline-dev 		libsqlite3-dev 		libssl-dev 		make 		tcl-dev 		tk-dev 		xz-utils 		zlib1g-dev 	' 	&& apt-get update && apt-get install -y $buildDeps --no-install-recommends && rm -rf /var/lib/apt/lists/* 	&& curl -fSL "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz" -o python.tar.xz 	&& curl -fSL "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc" -o python.tar.xz.asc 	&& export GNUPGHOME="$(mktemp -d)" 	&& gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$GPG_KEY" 	&& gpg --batch --verify python.tar.xz.asc python.tar.xz 	&& rm -r "$GNUPGHOME" python.tar.xz.asc 	&& mkdir -p /usr/src/python 	&& tar -xJC /usr/src/python --strip-components=1 -f python.tar.xz 	&& rm python.tar.xz 		&& cd /usr/src/python 	&& ./configure 		--enable-loadable-sqlite-extensions 		--enable-shared 	&& make -j$(nproc) 	&& make install 	&& ldconfig 	&& pip3 install --no-cache-dir --upgrade pip==$PYTHON_PIP_VERSION 	&& [ "$(pip list | awk -F '[ ()]+' '$1 == "pip" { print $2; exit }')" = "$PYTHON_PIP_VERSION" ] 	&& find /usr/local -depth 		\( 		    \( -type d -a -name test -o -name tests \) 		    -o 		    \( -type f -a -name '*.pyc' -o -name '*.pyo' \) 		\) -exec rm -rf '{}' + 	&& apt-get purge -y --auto-remove $buildDeps 	&& rm -rf /usr/src/python ~/.cache
-# Tue, 19 Jul 2016 20:58:08 GMT
-RUN cd /usr/local/bin 	&& ln -s easy_install-3.4 easy_install 	&& ln -s idle3 idle 	&& ln -s pydoc3 pydoc 	&& ln -s python3 python 	&& ln -s python3-config python-config
-# Tue, 19 Jul 2016 20:58:08 GMT
-CMD ["python3"]
-# Tue, 19 Jul 2016 23:14:33 GMT
-RUN apt-get update && apt-get install -y 		gcc 		gettext 		mysql-client libmysqlclient-dev 		postgresql-client libpq-dev 		sqlite3 	--no-install-recommends && rm -rf /var/lib/apt/lists/*
-# Tue, 19 Jul 2016 23:14:35 GMT
-ENV DJANGO_VERSION=1.9.8
-# Tue, 19 Jul 2016 23:15:25 GMT
-RUN pip install mysqlclient psycopg2 django=="$DJANGO_VERSION"
-```
-
--	Layers:
-	-	`sha256:5c90d4a2d1a8dfffd05ff2dd659923f0ca2d843b5e45d030e17abbcd06a11b5b`  
-		Last Modified: Thu, 09 Jun 2016 21:30:47 GMT  
-		Size: 51.4 MB (51352535 bytes)
-	-	`sha256:2ab25b944ecb380e724354cdbaa45cd1de6405ad91c89dd6b3de2a5021edd42f`  
-		Last Modified: Tue, 28 Jun 2016 23:30:34 GMT  
-		Size: 3.3 MB (3336139 bytes)
-	-	`sha256:94e7dc228a5a871bf1b01ae47c271cd97dbb6d3e0da6b683e03006142d9c8ede`  
-		Last Modified: Tue, 19 Jul 2016 21:45:13 GMT  
-		Size: 21.6 MB (21623305 bytes)
-	-	`sha256:55f3beb061850ce0e0ad7ff92c12000fc3bb429adbc1d76781a9ff04fc681ddc`  
-		Last Modified: Tue, 19 Jul 2016 21:45:01 GMT  
-		Size: 267.0 B
-	-	`sha256:e8a89962efe9bfbaee595484051370421489b22f0aa47d1c3932bd365046b7cc`  
-		Last Modified: Tue, 19 Jul 2016 23:16:08 GMT  
-		Size: 66.2 MB (66239813 bytes)
-	-	`sha256:3348f9b391af36ead35b860adb98aed1198da3eb208f11f77bb90fcb75ce8f7b`  
-		Last Modified: Tue, 19 Jul 2016 23:15:44 GMT  
-		Size: 15.0 MB (14990991 bytes)
+**does not exist** (yet?)
 
 ## `django:1-python3`
 
@@ -294,143 +157,9 @@ RUN pip install mysqlclient psycopg2 django=="$DJANGO_VERSION"
 		Last Modified: Tue, 19 Jul 2016 23:15:44 GMT  
 		Size: 15.0 MB (14990991 bytes)
 
-## `django:1.9.8`
-
-```console
-$ docker pull django@sha256:212196c2c7854e10b29aa417246690fbb029011131358fd1f3949d9489062b9e
-```
-
--	Platforms:
-	-	linux; amd64
-
-### `django:1.9.8` - linux; amd64
-
--	Docker Version: 1.10.3
--	Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json`
--	Total Size: **157.5 MB (157543050 bytes)**  
-	(compressed transfer size, not on-disk size)
--	Image ID: `sha256:7c1a3ee4db99e10d2943efcc16e9c4f6ff711f127b889925037c221c92656194`
--	Default Command: `["python3"]`
-
-```dockerfile
-# Thu, 09 Jun 2016 21:28:42 GMT
-ADD file:76679eeb94129df23c99013487d6b6bd779d2107bf07d194a524fdbb6a961530 in /
-# Thu, 09 Jun 2016 21:28:43 GMT
-CMD ["/bin/bash"]
-# Fri, 10 Jun 2016 18:44:45 GMT
-RUN apt-get purge -y python.*
-# Fri, 10 Jun 2016 18:44:45 GMT
-ENV LANG=C.UTF-8
-# Fri, 10 Jun 2016 20:30:15 GMT
-RUN apt-get update && apt-get install -y --no-install-recommends 		ca-certificates 		libsqlite3-0 		libssl1.0.0 	&& rm -rf /var/lib/apt/lists/*
-# Fri, 10 Jun 2016 20:47:20 GMT
-ENV GPG_KEY=97FC712E4C024BBEA48A61ED3A5CA953F73C700D
-# Tue, 28 Jun 2016 23:12:36 GMT
-ENV PYTHON_VERSION=3.4.5
-# Tue, 28 Jun 2016 23:12:36 GMT
-ENV PYTHON_PIP_VERSION=8.1.2
-# Tue, 19 Jul 2016 20:58:06 GMT
-RUN set -ex 	&& buildDeps=' 		curl 		gcc 		libbz2-dev 		libc6-dev 		liblzma-dev 		libncurses-dev 		libreadline-dev 		libsqlite3-dev 		libssl-dev 		make 		tcl-dev 		tk-dev 		xz-utils 		zlib1g-dev 	' 	&& apt-get update && apt-get install -y $buildDeps --no-install-recommends && rm -rf /var/lib/apt/lists/* 	&& curl -fSL "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz" -o python.tar.xz 	&& curl -fSL "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc" -o python.tar.xz.asc 	&& export GNUPGHOME="$(mktemp -d)" 	&& gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$GPG_KEY" 	&& gpg --batch --verify python.tar.xz.asc python.tar.xz 	&& rm -r "$GNUPGHOME" python.tar.xz.asc 	&& mkdir -p /usr/src/python 	&& tar -xJC /usr/src/python --strip-components=1 -f python.tar.xz 	&& rm python.tar.xz 		&& cd /usr/src/python 	&& ./configure 		--enable-loadable-sqlite-extensions 		--enable-shared 	&& make -j$(nproc) 	&& make install 	&& ldconfig 	&& pip3 install --no-cache-dir --upgrade pip==$PYTHON_PIP_VERSION 	&& [ "$(pip list | awk -F '[ ()]+' '$1 == "pip" { print $2; exit }')" = "$PYTHON_PIP_VERSION" ] 	&& find /usr/local -depth 		\( 		    \( -type d -a -name test -o -name tests \) 		    -o 		    \( -type f -a -name '*.pyc' -o -name '*.pyo' \) 		\) -exec rm -rf '{}' + 	&& apt-get purge -y --auto-remove $buildDeps 	&& rm -rf /usr/src/python ~/.cache
-# Tue, 19 Jul 2016 20:58:08 GMT
-RUN cd /usr/local/bin 	&& ln -s easy_install-3.4 easy_install 	&& ln -s idle3 idle 	&& ln -s pydoc3 pydoc 	&& ln -s python3 python 	&& ln -s python3-config python-config
-# Tue, 19 Jul 2016 20:58:08 GMT
-CMD ["python3"]
-# Tue, 19 Jul 2016 23:14:33 GMT
-RUN apt-get update && apt-get install -y 		gcc 		gettext 		mysql-client libmysqlclient-dev 		postgresql-client libpq-dev 		sqlite3 	--no-install-recommends && rm -rf /var/lib/apt/lists/*
-# Tue, 19 Jul 2016 23:14:35 GMT
-ENV DJANGO_VERSION=1.9.8
-# Tue, 19 Jul 2016 23:15:25 GMT
-RUN pip install mysqlclient psycopg2 django=="$DJANGO_VERSION"
-```
-
--	Layers:
-	-	`sha256:5c90d4a2d1a8dfffd05ff2dd659923f0ca2d843b5e45d030e17abbcd06a11b5b`  
-		Last Modified: Thu, 09 Jun 2016 21:30:47 GMT  
-		Size: 51.4 MB (51352535 bytes)
-	-	`sha256:2ab25b944ecb380e724354cdbaa45cd1de6405ad91c89dd6b3de2a5021edd42f`  
-		Last Modified: Tue, 28 Jun 2016 23:30:34 GMT  
-		Size: 3.3 MB (3336139 bytes)
-	-	`sha256:94e7dc228a5a871bf1b01ae47c271cd97dbb6d3e0da6b683e03006142d9c8ede`  
-		Last Modified: Tue, 19 Jul 2016 21:45:13 GMT  
-		Size: 21.6 MB (21623305 bytes)
-	-	`sha256:55f3beb061850ce0e0ad7ff92c12000fc3bb429adbc1d76781a9ff04fc681ddc`  
-		Last Modified: Tue, 19 Jul 2016 21:45:01 GMT  
-		Size: 267.0 B
-	-	`sha256:e8a89962efe9bfbaee595484051370421489b22f0aa47d1c3932bd365046b7cc`  
-		Last Modified: Tue, 19 Jul 2016 23:16:08 GMT  
-		Size: 66.2 MB (66239813 bytes)
-	-	`sha256:3348f9b391af36ead35b860adb98aed1198da3eb208f11f77bb90fcb75ce8f7b`  
-		Last Modified: Tue, 19 Jul 2016 23:15:44 GMT  
-		Size: 15.0 MB (14990991 bytes)
-
-## `django:1.9`
-
-```console
-$ docker pull django@sha256:212196c2c7854e10b29aa417246690fbb029011131358fd1f3949d9489062b9e
-```
-
--	Platforms:
-	-	linux; amd64
+## `django:1.10`
 
-### `django:1.9` - linux; amd64
-
--	Docker Version: 1.10.3
--	Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json`
--	Total Size: **157.5 MB (157543050 bytes)**  
-	(compressed transfer size, not on-disk size)
--	Image ID: `sha256:7c1a3ee4db99e10d2943efcc16e9c4f6ff711f127b889925037c221c92656194`
--	Default Command: `["python3"]`
-
-```dockerfile
-# Thu, 09 Jun 2016 21:28:42 GMT
-ADD file:76679eeb94129df23c99013487d6b6bd779d2107bf07d194a524fdbb6a961530 in /
-# Thu, 09 Jun 2016 21:28:43 GMT
-CMD ["/bin/bash"]
-# Fri, 10 Jun 2016 18:44:45 GMT
-RUN apt-get purge -y python.*
-# Fri, 10 Jun 2016 18:44:45 GMT
-ENV LANG=C.UTF-8
-# Fri, 10 Jun 2016 20:30:15 GMT
-RUN apt-get update && apt-get install -y --no-install-recommends 		ca-certificates 		libsqlite3-0 		libssl1.0.0 	&& rm -rf /var/lib/apt/lists/*
-# Fri, 10 Jun 2016 20:47:20 GMT
-ENV GPG_KEY=97FC712E4C024BBEA48A61ED3A5CA953F73C700D
-# Tue, 28 Jun 2016 23:12:36 GMT
-ENV PYTHON_VERSION=3.4.5
-# Tue, 28 Jun 2016 23:12:36 GMT
-ENV PYTHON_PIP_VERSION=8.1.2
-# Tue, 19 Jul 2016 20:58:06 GMT
-RUN set -ex 	&& buildDeps=' 		curl 		gcc 		libbz2-dev 		libc6-dev 		liblzma-dev 		libncurses-dev 		libreadline-dev 		libsqlite3-dev 		libssl-dev 		make 		tcl-dev 		tk-dev 		xz-utils 		zlib1g-dev 	' 	&& apt-get update && apt-get install -y $buildDeps --no-install-recommends && rm -rf /var/lib/apt/lists/* 	&& curl -fSL "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz" -o python.tar.xz 	&& curl -fSL "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc" -o python.tar.xz.asc 	&& export GNUPGHOME="$(mktemp -d)" 	&& gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$GPG_KEY" 	&& gpg --batch --verify python.tar.xz.asc python.tar.xz 	&& rm -r "$GNUPGHOME" python.tar.xz.asc 	&& mkdir -p /usr/src/python 	&& tar -xJC /usr/src/python --strip-components=1 -f python.tar.xz 	&& rm python.tar.xz 		&& cd /usr/src/python 	&& ./configure 		--enable-loadable-sqlite-extensions 		--enable-shared 	&& make -j$(nproc) 	&& make install 	&& ldconfig 	&& pip3 install --no-cache-dir --upgrade pip==$PYTHON_PIP_VERSION 	&& [ "$(pip list | awk -F '[ ()]+' '$1 == "pip" { print $2; exit }')" = "$PYTHON_PIP_VERSION" ] 	&& find /usr/local -depth 		\( 		    \( -type d -a -name test -o -name tests \) 		    -o 		    \( -type f -a -name '*.pyc' -o -name '*.pyo' \) 		\) -exec rm -rf '{}' + 	&& apt-get purge -y --auto-remove $buildDeps 	&& rm -rf /usr/src/python ~/.cache
-# Tue, 19 Jul 2016 20:58:08 GMT
-RUN cd /usr/local/bin 	&& ln -s easy_install-3.4 easy_install 	&& ln -s idle3 idle 	&& ln -s pydoc3 pydoc 	&& ln -s python3 python 	&& ln -s python3-config python-config
-# Tue, 19 Jul 2016 20:58:08 GMT
-CMD ["python3"]
-# Tue, 19 Jul 2016 23:14:33 GMT
-RUN apt-get update && apt-get install -y 		gcc 		gettext 		mysql-client libmysqlclient-dev 		postgresql-client libpq-dev 		sqlite3 	--no-install-recommends && rm -rf /var/lib/apt/lists/*
-# Tue, 19 Jul 2016 23:14:35 GMT
-ENV DJANGO_VERSION=1.9.8
-# Tue, 19 Jul 2016 23:15:25 GMT
-RUN pip install mysqlclient psycopg2 django=="$DJANGO_VERSION"
-```
-
--	Layers:
-	-	`sha256:5c90d4a2d1a8dfffd05ff2dd659923f0ca2d843b5e45d030e17abbcd06a11b5b`  
-		Last Modified: Thu, 09 Jun 2016 21:30:47 GMT  
-		Size: 51.4 MB (51352535 bytes)
-	-	`sha256:2ab25b944ecb380e724354cdbaa45cd1de6405ad91c89dd6b3de2a5021edd42f`  
-		Last Modified: Tue, 28 Jun 2016 23:30:34 GMT  
-		Size: 3.3 MB (3336139 bytes)
-	-	`sha256:94e7dc228a5a871bf1b01ae47c271cd97dbb6d3e0da6b683e03006142d9c8ede`  
-		Last Modified: Tue, 19 Jul 2016 21:45:13 GMT  
-		Size: 21.6 MB (21623305 bytes)
-	-	`sha256:55f3beb061850ce0e0ad7ff92c12000fc3bb429adbc1d76781a9ff04fc681ddc`  
-		Last Modified: Tue, 19 Jul 2016 21:45:01 GMT  
-		Size: 267.0 B
-	-	`sha256:e8a89962efe9bfbaee595484051370421489b22f0aa47d1c3932bd365046b7cc`  
-		Last Modified: Tue, 19 Jul 2016 23:16:08 GMT  
-		Size: 66.2 MB (66239813 bytes)
-	-	`sha256:3348f9b391af36ead35b860adb98aed1198da3eb208f11f77bb90fcb75ce8f7b`  
-		Last Modified: Tue, 19 Jul 2016 23:15:44 GMT  
-		Size: 15.0 MB (14990991 bytes)
+**does not exist** (yet?)
 
 ## `django:1`
 
@@ -754,133 +483,9 @@ CMD ["python" "manage.py" "runserver" "0.0.0.0:8000"]
 		Last Modified: Tue, 19 Jul 2016 23:12:25 GMT  
 		Size: 16.4 MB (16383906 bytes)
 
-## `django:1.9.8-python2`
-
-```console
-$ docker pull django@sha256:47eccfd65e4b1e9fae51382a15fcb419ea5761440831304f13e17c90200ee7f7
-```
-
--	Platforms:
-	-	linux; amd64
-
-### `django:1.9.8-python2` - linux; amd64
-
--	Docker Version: 1.10.3
--	Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json`
--	Total Size: **154.0 MB (154013397 bytes)**  
-	(compressed transfer size, not on-disk size)
--	Image ID: `sha256:5237faea5e4b9971b00a104562c6a8325d5b8fe56fde86778f62ddc2da5c7bc2`
--	Default Command: `["python2"]`
+## `django:1.10-python2`
 
-```dockerfile
-# Thu, 09 Jun 2016 21:28:42 GMT
-ADD file:76679eeb94129df23c99013487d6b6bd779d2107bf07d194a524fdbb6a961530 in /
-# Thu, 09 Jun 2016 21:28:43 GMT
-CMD ["/bin/bash"]
-# Fri, 10 Jun 2016 18:44:45 GMT
-RUN apt-get purge -y python.*
-# Fri, 10 Jun 2016 18:44:45 GMT
-ENV LANG=C.UTF-8
-# Fri, 10 Jun 2016 20:30:15 GMT
-RUN apt-get update && apt-get install -y --no-install-recommends 		ca-certificates 		libsqlite3-0 		libssl1.0.0 	&& rm -rf /var/lib/apt/lists/*
-# Fri, 10 Jun 2016 20:30:15 GMT
-ENV GPG_KEY=C01E1CAD5EA2C4F0B8E3571504C367C218ADD4FF
-# Tue, 28 Jun 2016 23:01:59 GMT
-ENV PYTHON_VERSION=2.7.12
-# Tue, 28 Jun 2016 23:01:59 GMT
-ENV PYTHON_PIP_VERSION=8.1.2
-# Tue, 19 Jul 2016 20:11:23 GMT
-RUN set -ex 	&& buildDeps=' 		curl 		gcc 		libbz2-dev 		libc6-dev 		libncurses-dev 		libreadline-dev 		libsqlite3-dev 		libssl-dev 		make 		tcl-dev 		tk-dev 		xz-utils 		zlib1g-dev 	' 	&& apt-get update && apt-get install -y $buildDeps --no-install-recommends && rm -rf /var/lib/apt/lists/* 	&& curl -fSL "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz" -o python.tar.xz 	&& curl -fSL "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc" -o python.tar.xz.asc 	&& export GNUPGHOME="$(mktemp -d)" 	&& gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$GPG_KEY" 	&& gpg --batch --verify python.tar.xz.asc python.tar.xz 	&& rm -r "$GNUPGHOME" python.tar.xz.asc 	&& mkdir -p /usr/src/python 	&& tar -xJC /usr/src/python --strip-components=1 -f python.tar.xz 	&& rm python.tar.xz 		&& cd /usr/src/python 	&& ./configure 		--enable-shared 		--enable-unicode=ucs4 	&& make -j$(nproc) 	&& make install 	&& ldconfig 	&& curl -fSL 'https://bootstrap.pypa.io/get-pip.py' | python2 	&& pip install --no-cache-dir --upgrade pip==$PYTHON_PIP_VERSION 	&& [ "$(pip list | awk -F '[ ()]+' '$1 == "pip" { print $2; exit }')" = "$PYTHON_PIP_VERSION" ] 	&& find /usr/local -depth 		\( 		    \( -type d -a -name test -o -name tests \) 		    -o 		    \( -type f -a -name '*.pyc' -o -name '*.pyo' \) 		\) -exec rm -rf '{}' + 	&& apt-get purge -y --auto-remove $buildDeps 	&& rm -rf /usr/src/python ~/.cache
-# Tue, 19 Jul 2016 20:11:24 GMT
-CMD ["python2"]
-# Tue, 19 Jul 2016 23:06:57 GMT
-RUN apt-get update && apt-get install -y 		gcc 		gettext 		mysql-client libmysqlclient-dev 		postgresql-client libpq-dev 		sqlite3 	--no-install-recommends && rm -rf /var/lib/apt/lists/*
-# Tue, 19 Jul 2016 23:06:59 GMT
-ENV DJANGO_VERSION=1.9.8
-# Tue, 19 Jul 2016 23:07:34 GMT
-RUN pip install mysqlclient psycopg2 django=="$DJANGO_VERSION"
-```
-
--	Layers:
-	-	`sha256:5c90d4a2d1a8dfffd05ff2dd659923f0ca2d843b5e45d030e17abbcd06a11b5b`  
-		Last Modified: Thu, 09 Jun 2016 21:30:47 GMT  
-		Size: 51.4 MB (51352535 bytes)
-	-	`sha256:2ab25b944ecb380e724354cdbaa45cd1de6405ad91c89dd6b3de2a5021edd42f`  
-		Last Modified: Tue, 28 Jun 2016 23:30:34 GMT  
-		Size: 3.3 MB (3336139 bytes)
-	-	`sha256:d59b56cfc4bf0112cc2b5e7572bc74226e60628de2553ddf7727ccde6aab4dcf`  
-		Last Modified: Tue, 19 Jul 2016 21:37:44 GMT  
-		Size: 18.1 MB (18112485 bytes)
-	-	`sha256:aea67edfba36400cfdaa593176e06386a2b2233dc82b95005b90445c2c35904c`  
-		Last Modified: Tue, 19 Jul 2016 23:08:16 GMT  
-		Size: 66.2 MB (66239730 bytes)
-	-	`sha256:791ab07ad0d8603bb8a573dd84f8d722bc82e5f81f9e3345e2c04da0dcb0e92c`  
-		Last Modified: Tue, 19 Jul 2016 23:07:53 GMT  
-		Size: 15.0 MB (14972508 bytes)
-
-## `django:1.9-python2`
-
-```console
-$ docker pull django@sha256:47eccfd65e4b1e9fae51382a15fcb419ea5761440831304f13e17c90200ee7f7
-```
-
--	Platforms:
-	-	linux; amd64
-
-### `django:1.9-python2` - linux; amd64
-
--	Docker Version: 1.10.3
--	Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json`
--	Total Size: **154.0 MB (154013397 bytes)**  
-	(compressed transfer size, not on-disk size)
--	Image ID: `sha256:5237faea5e4b9971b00a104562c6a8325d5b8fe56fde86778f62ddc2da5c7bc2`
--	Default Command: `["python2"]`
-
-```dockerfile
-# Thu, 09 Jun 2016 21:28:42 GMT
-ADD file:76679eeb94129df23c99013487d6b6bd779d2107bf07d194a524fdbb6a961530 in /
-# Thu, 09 Jun 2016 21:28:43 GMT
-CMD ["/bin/bash"]
-# Fri, 10 Jun 2016 18:44:45 GMT
-RUN apt-get purge -y python.*
-# Fri, 10 Jun 2016 18:44:45 GMT
-ENV LANG=C.UTF-8
-# Fri, 10 Jun 2016 20:30:15 GMT
-RUN apt-get update && apt-get install -y --no-install-recommends 		ca-certificates 		libsqlite3-0 		libssl1.0.0 	&& rm -rf /var/lib/apt/lists/*
-# Fri, 10 Jun 2016 20:30:15 GMT
-ENV GPG_KEY=C01E1CAD5EA2C4F0B8E3571504C367C218ADD4FF
-# Tue, 28 Jun 2016 23:01:59 GMT
-ENV PYTHON_VERSION=2.7.12
-# Tue, 28 Jun 2016 23:01:59 GMT
-ENV PYTHON_PIP_VERSION=8.1.2
-# Tue, 19 Jul 2016 20:11:23 GMT
-RUN set -ex 	&& buildDeps=' 		curl 		gcc 		libbz2-dev 		libc6-dev 		libncurses-dev 		libreadline-dev 		libsqlite3-dev 		libssl-dev 		make 		tcl-dev 		tk-dev 		xz-utils 		zlib1g-dev 	' 	&& apt-get update && apt-get install -y $buildDeps --no-install-recommends && rm -rf /var/lib/apt/lists/* 	&& curl -fSL "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz" -o python.tar.xz 	&& curl -fSL "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc" -o python.tar.xz.asc 	&& export GNUPGHOME="$(mktemp -d)" 	&& gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$GPG_KEY" 	&& gpg --batch --verify python.tar.xz.asc python.tar.xz 	&& rm -r "$GNUPGHOME" python.tar.xz.asc 	&& mkdir -p /usr/src/python 	&& tar -xJC /usr/src/python --strip-components=1 -f python.tar.xz 	&& rm python.tar.xz 		&& cd /usr/src/python 	&& ./configure 		--enable-shared 		--enable-unicode=ucs4 	&& make -j$(nproc) 	&& make install 	&& ldconfig 	&& curl -fSL 'https://bootstrap.pypa.io/get-pip.py' | python2 	&& pip install --no-cache-dir --upgrade pip==$PYTHON_PIP_VERSION 	&& [ "$(pip list | awk -F '[ ()]+' '$1 == "pip" { print $2; exit }')" = "$PYTHON_PIP_VERSION" ] 	&& find /usr/local -depth 		\( 		    \( -type d -a -name test -o -name tests \) 		    -o 		    \( -type f -a -name '*.pyc' -o -name '*.pyo' \) 		\) -exec rm -rf '{}' + 	&& apt-get purge -y --auto-remove $buildDeps 	&& rm -rf /usr/src/python ~/.cache
-# Tue, 19 Jul 2016 20:11:24 GMT
-CMD ["python2"]
-# Tue, 19 Jul 2016 23:06:57 GMT
-RUN apt-get update && apt-get install -y 		gcc 		gettext 		mysql-client libmysqlclient-dev 		postgresql-client libpq-dev 		sqlite3 	--no-install-recommends && rm -rf /var/lib/apt/lists/*
-# Tue, 19 Jul 2016 23:06:59 GMT
-ENV DJANGO_VERSION=1.9.8
-# Tue, 19 Jul 2016 23:07:34 GMT
-RUN pip install mysqlclient psycopg2 django=="$DJANGO_VERSION"
-```
-
--	Layers:
-	-	`sha256:5c90d4a2d1a8dfffd05ff2dd659923f0ca2d843b5e45d030e17abbcd06a11b5b`  
-		Last Modified: Thu, 09 Jun 2016 21:30:47 GMT  
-		Size: 51.4 MB (51352535 bytes)
-	-	`sha256:2ab25b944ecb380e724354cdbaa45cd1de6405ad91c89dd6b3de2a5021edd42f`  
-		Last Modified: Tue, 28 Jun 2016 23:30:34 GMT  
-		Size: 3.3 MB (3336139 bytes)
-	-	`sha256:d59b56cfc4bf0112cc2b5e7572bc74226e60628de2553ddf7727ccde6aab4dcf`  
-		Last Modified: Tue, 19 Jul 2016 21:37:44 GMT  
-		Size: 18.1 MB (18112485 bytes)
-	-	`sha256:aea67edfba36400cfdaa593176e06386a2b2233dc82b95005b90445c2c35904c`  
-		Last Modified: Tue, 19 Jul 2016 23:08:16 GMT  
-		Size: 66.2 MB (66239730 bytes)
-	-	`sha256:791ab07ad0d8603bb8a573dd84f8d722bc82e5f81f9e3345e2c04da0dcb0e92c`  
-		Last Modified: Tue, 19 Jul 2016 23:07:53 GMT  
-		Size: 15.0 MB (14972508 bytes)
+**does not exist** (yet?)
 
 ## `django:1-python2`
 

+ 12 - 291
golang/tag-details.md

@@ -26,13 +26,13 @@
 -	[`golang:1.6-alpine`](#golang16-alpine)
 -	[`golang:1-alpine`](#golang1-alpine)
 -	[`golang:alpine`](#golangalpine)
--	[`golang:1.7rc3`](#golang17rc3)
+-	[`golang:1.7rc4`](#golang17rc4)
 -	[`golang:1.7`](#golang17)
--	[`golang:1.7rc3-onbuild`](#golang17rc3-onbuild)
+-	[`golang:1.7rc4-onbuild`](#golang17rc4-onbuild)
 -	[`golang:1.7-onbuild`](#golang17-onbuild)
--	[`golang:1.7rc3-wheezy`](#golang17rc3-wheezy)
+-	[`golang:1.7rc4-wheezy`](#golang17rc4-wheezy)
 -	[`golang:1.7-wheezy`](#golang17-wheezy)
--	[`golang:1.7rc3-alpine`](#golang17rc3-alpine)
+-	[`golang:1.7rc4-alpine`](#golang17rc4-alpine)
 -	[`golang:1.7-alpine`](#golang17-alpine)
 
 ## `golang:1.5.4`
@@ -1795,77 +1795,9 @@ COPY file:f6191f2c86edc9343569339f101facba47e886e33e29d70da6916ca6b1101a53 in /u
 		Last Modified: Mon, 18 Jul 2016 17:30:04 GMT  
 		Size: 1.3 KB (1347 bytes)
 
-## `golang:1.7rc3`
+## `golang:1.7rc4`
 
-```console
-$ docker pull golang@sha256:7a6c9686fd3c8fbb4bd35609b068be1d567e67e85d58dd06bdb59d14d5ec9a88
-```
-
--	Platforms:
-	-	linux; amd64
-
-### `golang:1.7rc3` - linux; amd64
-
--	Docker Version: 1.10.3
--	Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json`
--	Total Size: **250.8 MB (250798486 bytes)**  
-	(compressed transfer size, not on-disk size)
--	Image ID: `sha256:c5c4937cbab92ac9d5b5378cd16cedc02001f6a3ccb5b1f354a16e186dc63c38`
--	Default Command: `["\/bin\/bash"]`
-
-```dockerfile
-# Thu, 28 Jul 2016 17:47:54 GMT
-ADD file:0e0565652aa852f62033d99f84892216020d30f64521ded5e72d4940bc4c9697 in /
-# Thu, 28 Jul 2016 17:47:55 GMT
-CMD ["/bin/bash"]
-# Thu, 28 Jul 2016 17:57:57 GMT
-RUN apt-get update && apt-get install -y --no-install-recommends 		ca-certificates 		curl 		wget 	&& rm -rf /var/lib/apt/lists/*
-# Thu, 28 Jul 2016 17:59:13 GMT
-RUN apt-get update && apt-get install -y --no-install-recommends 		bzr 		git 		mercurial 		openssh-client 		subversion 				procps 	&& rm -rf /var/lib/apt/lists/*
-# Fri, 29 Jul 2016 03:55:49 GMT
-RUN apt-get update && apt-get install -y --no-install-recommends 		g++ 		gcc 		libc6-dev 		make 	&& rm -rf /var/lib/apt/lists/*
-# Fri, 29 Jul 2016 03:57:08 GMT
-ENV GOLANG_VERSION=1.7rc3
-# Fri, 29 Jul 2016 03:57:09 GMT
-ENV GOLANG_DOWNLOAD_URL=https://golang.org/dl/go1.7rc3.linux-amd64.tar.gz
-# Fri, 29 Jul 2016 03:57:10 GMT
-ENV GOLANG_DOWNLOAD_SHA256=53393c132223415c30ef877cb5c900d989f8a953e864e1119aeaedbca1918144
-# Fri, 29 Jul 2016 03:57:20 GMT
-RUN curl -fsSL "$GOLANG_DOWNLOAD_URL" -o golang.tar.gz 	&& echo "$GOLANG_DOWNLOAD_SHA256  golang.tar.gz" | sha256sum -c - 	&& tar -C /usr/local -xzf golang.tar.gz 	&& rm golang.tar.gz
-# Fri, 29 Jul 2016 03:57:21 GMT
-ENV GOPATH=/go
-# Fri, 29 Jul 2016 03:57:22 GMT
-ENV PATH=/go/bin:/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
-# Fri, 29 Jul 2016 03:57:24 GMT
-RUN mkdir -p "$GOPATH/src" "$GOPATH/bin" && chmod -R 777 "$GOPATH"
-# Fri, 29 Jul 2016 03:57:25 GMT
-WORKDIR /go
-# Fri, 29 Jul 2016 03:57:26 GMT
-COPY file:f6191f2c86edc9343569339f101facba47e886e33e29d70da6916ca6b1101a53 in /usr/local/bin/
-```
-
--	Layers:
-	-	`sha256:357ea8c3d80bc25792e010facfc98aee5972ebc47e290eb0d5aea3671a901cab`  
-		Last Modified: Thu, 28 Jul 2016 17:49:58 GMT  
-		Size: 51.4 MB (51365611 bytes)
-	-	`sha256:52befadefd24601247558f63fcb2ccd96b79cbc447a148ea1d0aa2719a9ac3b1`  
-		Last Modified: Thu, 28 Jul 2016 21:52:07 GMT  
-		Size: 18.5 MB (18526978 bytes)
-	-	`sha256:3c0732d5313c8ec8477e518f3e0af81796bdb047ed48cf256333785fc9916ba1`  
-		Last Modified: Thu, 28 Jul 2016 21:52:20 GMT  
-		Size: 42.5 MB (42495385 bytes)
-	-	`sha256:fee55c62229822bb787bc8502672cac358825b228a0d72ea48b71f6814a92ef4`  
-		Last Modified: Fri, 29 Jul 2016 03:56:36 GMT  
-		Size: 56.9 MB (56904467 bytes)
-	-	`sha256:897b7e9d23ed9c539d3eec6690e7427b15cf2789f32a223a3952048094ff4776`  
-		Last Modified: Fri, 29 Jul 2016 03:57:59 GMT  
-		Size: 81.5 MB (81504572 bytes)
-	-	`sha256:26b50fba64aedec64948efbd4fdf7682d785013f796084df02b068fb4ddd70ca`  
-		Last Modified: Fri, 29 Jul 2016 03:57:34 GMT  
-		Size: 123.0 B
-	-	`sha256:5ba81a599044f7b7b1483ac377492c2fb4d5e156e73d97d671458554dccf80d6`  
-		Last Modified: Fri, 29 Jul 2016 03:57:34 GMT  
-		Size: 1.4 KB (1350 bytes)
+**does not exist** (yet?)
 
 ## `golang:1.7`
 
@@ -1939,92 +1871,9 @@ COPY file:f6191f2c86edc9343569339f101facba47e886e33e29d70da6916ca6b1101a53 in /u
 		Last Modified: Fri, 29 Jul 2016 03:57:34 GMT  
 		Size: 1.4 KB (1350 bytes)
 
-## `golang:1.7rc3-onbuild`
-
-```console
-$ docker pull golang@sha256:af44c063d11d3dcc9b7ff0fbf6cf29014d525ff7e19d4e3ed74e9fe2e6becc2e
-```
-
--	Platforms:
-	-	linux; amd64
-
-### `golang:1.7rc3-onbuild` - linux; amd64
-
--	Docker Version: 1.10.3
--	Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json`
--	Total Size: **250.8 MB (250798618 bytes)**  
-	(compressed transfer size, not on-disk size)
--	Image ID: `sha256:5a40bfded693078c04e666c78424783e1729a1c17dfe30cd26f6e4918a5dcad4`
--	Default Command: `["go-wrapper","run"]`
+## `golang:1.7rc4-onbuild`
 
-```dockerfile
-# Thu, 28 Jul 2016 17:47:54 GMT
-ADD file:0e0565652aa852f62033d99f84892216020d30f64521ded5e72d4940bc4c9697 in /
-# Thu, 28 Jul 2016 17:47:55 GMT
-CMD ["/bin/bash"]
-# Thu, 28 Jul 2016 17:57:57 GMT
-RUN apt-get update && apt-get install -y --no-install-recommends 		ca-certificates 		curl 		wget 	&& rm -rf /var/lib/apt/lists/*
-# Thu, 28 Jul 2016 17:59:13 GMT
-RUN apt-get update && apt-get install -y --no-install-recommends 		bzr 		git 		mercurial 		openssh-client 		subversion 				procps 	&& rm -rf /var/lib/apt/lists/*
-# Fri, 29 Jul 2016 03:55:49 GMT
-RUN apt-get update && apt-get install -y --no-install-recommends 		g++ 		gcc 		libc6-dev 		make 	&& rm -rf /var/lib/apt/lists/*
-# Fri, 29 Jul 2016 03:57:08 GMT
-ENV GOLANG_VERSION=1.7rc3
-# Fri, 29 Jul 2016 03:57:09 GMT
-ENV GOLANG_DOWNLOAD_URL=https://golang.org/dl/go1.7rc3.linux-amd64.tar.gz
-# Fri, 29 Jul 2016 03:57:10 GMT
-ENV GOLANG_DOWNLOAD_SHA256=53393c132223415c30ef877cb5c900d989f8a953e864e1119aeaedbca1918144
-# Fri, 29 Jul 2016 03:57:20 GMT
-RUN curl -fsSL "$GOLANG_DOWNLOAD_URL" -o golang.tar.gz 	&& echo "$GOLANG_DOWNLOAD_SHA256  golang.tar.gz" | sha256sum -c - 	&& tar -C /usr/local -xzf golang.tar.gz 	&& rm golang.tar.gz
-# Fri, 29 Jul 2016 03:57:21 GMT
-ENV GOPATH=/go
-# Fri, 29 Jul 2016 03:57:22 GMT
-ENV PATH=/go/bin:/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
-# Fri, 29 Jul 2016 03:57:24 GMT
-RUN mkdir -p "$GOPATH/src" "$GOPATH/bin" && chmod -R 777 "$GOPATH"
-# Fri, 29 Jul 2016 03:57:25 GMT
-WORKDIR /go
-# Fri, 29 Jul 2016 03:57:26 GMT
-COPY file:f6191f2c86edc9343569339f101facba47e886e33e29d70da6916ca6b1101a53 in /usr/local/bin/
-# Fri, 29 Jul 2016 03:58:20 GMT
-RUN mkdir -p /go/src/app
-# Fri, 29 Jul 2016 03:58:21 GMT
-WORKDIR /go/src/app
-# Fri, 29 Jul 2016 03:58:21 GMT
-CMD ["go-wrapper" "run"]
-# Fri, 29 Jul 2016 03:58:22 GMT
-ONBUILD COPY . /go/src/app
-# Fri, 29 Jul 2016 03:58:23 GMT
-ONBUILD RUN go-wrapper download
-# Fri, 29 Jul 2016 03:58:23 GMT
-ONBUILD RUN go-wrapper install
-```
-
--	Layers:
-	-	`sha256:357ea8c3d80bc25792e010facfc98aee5972ebc47e290eb0d5aea3671a901cab`  
-		Last Modified: Thu, 28 Jul 2016 17:49:58 GMT  
-		Size: 51.4 MB (51365611 bytes)
-	-	`sha256:52befadefd24601247558f63fcb2ccd96b79cbc447a148ea1d0aa2719a9ac3b1`  
-		Last Modified: Thu, 28 Jul 2016 21:52:07 GMT  
-		Size: 18.5 MB (18526978 bytes)
-	-	`sha256:3c0732d5313c8ec8477e518f3e0af81796bdb047ed48cf256333785fc9916ba1`  
-		Last Modified: Thu, 28 Jul 2016 21:52:20 GMT  
-		Size: 42.5 MB (42495385 bytes)
-	-	`sha256:fee55c62229822bb787bc8502672cac358825b228a0d72ea48b71f6814a92ef4`  
-		Last Modified: Fri, 29 Jul 2016 03:56:36 GMT  
-		Size: 56.9 MB (56904467 bytes)
-	-	`sha256:897b7e9d23ed9c539d3eec6690e7427b15cf2789f32a223a3952048094ff4776`  
-		Last Modified: Fri, 29 Jul 2016 03:57:59 GMT  
-		Size: 81.5 MB (81504572 bytes)
-	-	`sha256:26b50fba64aedec64948efbd4fdf7682d785013f796084df02b068fb4ddd70ca`  
-		Last Modified: Fri, 29 Jul 2016 03:57:34 GMT  
-		Size: 123.0 B
-	-	`sha256:5ba81a599044f7b7b1483ac377492c2fb4d5e156e73d97d671458554dccf80d6`  
-		Last Modified: Fri, 29 Jul 2016 03:57:34 GMT  
-		Size: 1.4 KB (1350 bytes)
-	-	`sha256:5edc13d63468f45c0232e6c11513be2d2673b04bf446cbefa54d58482dc11d12`  
-		Last Modified: Fri, 29 Jul 2016 03:58:32 GMT  
-		Size: 132.0 B
+**does not exist** (yet?)
 
 ## `golang:1.7-onbuild`
 
@@ -2113,77 +1962,9 @@ ONBUILD RUN go-wrapper install
 		Last Modified: Fri, 29 Jul 2016 03:58:32 GMT  
 		Size: 132.0 B
 
-## `golang:1.7rc3-wheezy`
-
-```console
-$ docker pull golang@sha256:edb39369a94b8ae3f4f910daf65da81cd8b8da120283fc2e99dd48f38edba148
-```
-
--	Platforms:
-	-	linux; amd64
+## `golang:1.7rc4-wheezy`
 
-### `golang:1.7rc3-wheezy` - linux; amd64
-
--	Docker Version: 1.10.3
--	Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json`
--	Total Size: **198.3 MB (198283867 bytes)**  
-	(compressed transfer size, not on-disk size)
--	Image ID: `sha256:db36df1a46167dcd2903a406dded3aa8c2c984fa719f174f2a50380469022472`
--	Default Command: `["\/bin\/bash"]`
-
-```dockerfile
-# Thu, 28 Jul 2016 17:49:29 GMT
-ADD file:0d2a68d1c5a4a52b0bddd8921fe9f3d603a5d69911d4bba61c5e2460e6500d76 in /
-# Thu, 28 Jul 2016 17:49:29 GMT
-CMD ["/bin/bash"]
-# Thu, 28 Jul 2016 18:27:55 GMT
-RUN apt-get update && apt-get install -y --no-install-recommends 		ca-certificates 		curl 		wget 	&& rm -rf /var/lib/apt/lists/*
-# Thu, 28 Jul 2016 18:28:21 GMT
-RUN apt-get update && apt-get install -y --no-install-recommends 		bzr 		git 		mercurial 		openssh-client 		subversion 				procps 	&& rm -rf /var/lib/apt/lists/*
-# Fri, 29 Jul 2016 03:59:00 GMT
-RUN apt-get update && apt-get install -y --no-install-recommends 		g++ 		gcc 		libc6-dev 		make 	&& rm -rf /var/lib/apt/lists/*
-# Fri, 29 Jul 2016 03:59:01 GMT
-ENV GOLANG_VERSION=1.7rc3
-# Fri, 29 Jul 2016 03:59:02 GMT
-ENV GOLANG_DOWNLOAD_URL=https://golang.org/dl/go1.7rc3.linux-amd64.tar.gz
-# Fri, 29 Jul 2016 03:59:03 GMT
-ENV GOLANG_DOWNLOAD_SHA256=53393c132223415c30ef877cb5c900d989f8a953e864e1119aeaedbca1918144
-# Fri, 29 Jul 2016 03:59:13 GMT
-RUN curl -fsSL "$GOLANG_DOWNLOAD_URL" -o golang.tar.gz 	&& echo "$GOLANG_DOWNLOAD_SHA256  golang.tar.gz" | sha256sum -c - 	&& tar -C /usr/local -xzf golang.tar.gz 	&& rm golang.tar.gz
-# Fri, 29 Jul 2016 03:59:14 GMT
-ENV GOPATH=/go
-# Fri, 29 Jul 2016 03:59:15 GMT
-ENV PATH=/go/bin:/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
-# Fri, 29 Jul 2016 03:59:17 GMT
-RUN mkdir -p "$GOPATH/src" "$GOPATH/bin" && chmod -R 777 "$GOPATH"
-# Fri, 29 Jul 2016 03:59:17 GMT
-WORKDIR /go
-# Fri, 29 Jul 2016 03:59:19 GMT
-COPY file:f6191f2c86edc9343569339f101facba47e886e33e29d70da6916ca6b1101a53 in /usr/local/bin/
-```
-
--	Layers:
-	-	`sha256:5c68a10e9f3f9e2757d1f2b0a51ad5ac41f5395a190bbbe3907a6b6fffa9bcea`  
-		Last Modified: Thu, 28 Jul 2016 17:54:32 GMT  
-		Size: 37.2 MB (37209635 bytes)
-	-	`sha256:9c81f9b5104e75c51d678d80525193ab71008b9c25c1a1e4694996b0744c6cbe`  
-		Last Modified: Thu, 28 Jul 2016 21:53:17 GMT  
-		Size: 6.7 MB (6730996 bytes)
-	-	`sha256:8c8d9d9752348fab5a9cd1140f31df8ad6ce301aca3e7d4e303d14fde010ea14`  
-		Last Modified: Thu, 28 Jul 2016 21:53:49 GMT  
-		Size: 38.9 MB (38887392 bytes)
-	-	`sha256:0238af288e95b46257dcfbe2c650681a0ee6b66bdcf2306ece99f93f1ad794a3`  
-		Last Modified: Fri, 29 Jul 2016 03:59:40 GMT  
-		Size: 33.9 MB (33949794 bytes)
-	-	`sha256:e323f8ded924f71b9308ceab4c71645e5db20c8b7e37d0167f7903b0880adb13`  
-		Last Modified: Fri, 29 Jul 2016 03:59:56 GMT  
-		Size: 81.5 MB (81504572 bytes)
-	-	`sha256:a0a4b1cca9be900fa3f57d50887fe64f1cafa7e087a99afd8f78c324d42909dd`  
-		Last Modified: Fri, 29 Jul 2016 03:59:28 GMT  
-		Size: 123.0 B
-	-	`sha256:81b636afc3360df13e32d0543a4f2ff612a24ba302923c513e131a497b4f4a6a`  
-		Last Modified: Fri, 29 Jul 2016 03:59:28 GMT  
-		Size: 1.4 KB (1355 bytes)
+**does not exist** (yet?)
 
 ## `golang:1.7-wheezy`
 
@@ -2257,69 +2038,9 @@ COPY file:f6191f2c86edc9343569339f101facba47e886e33e29d70da6916ca6b1101a53 in /u
 		Last Modified: Fri, 29 Jul 2016 03:59:28 GMT  
 		Size: 1.4 KB (1355 bytes)
 
-## `golang:1.7rc3-alpine`
+## `golang:1.7rc4-alpine`
 
-```console
-$ docker pull golang@sha256:3fdab01a234cf4c51562beb573ecb3df5da6118a4154b40fd4a9994f3f205cdd
-```
-
--	Platforms:
-	-	linux; amd64
-
-### `golang:1.7rc3-alpine` - linux; amd64
-
--	Docker Version: 1.10.3
--	Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json`
--	Total Size: **72.8 MB (72823784 bytes)**  
-	(compressed transfer size, not on-disk size)
--	Image ID: `sha256:f82681814c361621dd05b4cb1f237612370315d78dc925015cc98f2802f5ffde`
-
-```dockerfile
-# Thu, 23 Jun 2016 19:55:18 GMT
-ADD file:852e9d0cb9d906535af512a89339fc70b2873a0f94defbcbe41cd44942dd6ac8 in /
-# Fri, 01 Jul 2016 19:29:12 GMT
-RUN apk add --no-cache ca-certificates
-# Fri, 22 Jul 2016 21:25:20 GMT
-ENV GOLANG_VERSION=1.7rc3
-# Fri, 22 Jul 2016 21:25:20 GMT
-ENV GOLANG_SRC_URL=https://golang.org/dl/go1.7rc3.src.tar.gz
-# Fri, 22 Jul 2016 21:25:21 GMT
-ENV GOLANG_SRC_SHA256=6df6425ec3ac23fe9bcc52e1950f3a5829e5ed5a964d396d7f662a3d2fa95232
-# Fri, 22 Jul 2016 21:25:21 GMT
-COPY file:b54d7d4313a41e3729d6f4b7aa6e6f33a1e99759cb2a04149fae89f8211c3a65 in /
-# Fri, 22 Jul 2016 21:26:35 GMT
-RUN set -ex 	&& apk add --no-cache --virtual .build-deps 		bash 		gcc 		musl-dev 		openssl 		go 		&& export GOROOT_BOOTSTRAP="$(go env GOROOT)" 		&& wget -q "$GOLANG_SRC_URL" -O golang.tar.gz 	&& echo "$GOLANG_SRC_SHA256  golang.tar.gz" | sha256sum -c - 	&& tar -C /usr/local -xzf golang.tar.gz 	&& rm golang.tar.gz 	&& cd /usr/local/go/src 	&& patch -p2 -i /no-pic.patch 	&& ./make.bash 		&& rm -rf /*.patch 	&& apk del .build-deps
-# Fri, 22 Jul 2016 21:26:35 GMT
-ENV GOPATH=/go
-# Fri, 22 Jul 2016 21:26:36 GMT
-ENV PATH=/go/bin:/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
-# Fri, 22 Jul 2016 21:26:37 GMT
-RUN mkdir -p "$GOPATH/src" "$GOPATH/bin" && chmod -R 777 "$GOPATH"
-# Fri, 22 Jul 2016 21:26:37 GMT
-WORKDIR /go
-# Fri, 22 Jul 2016 21:26:38 GMT
-COPY file:f6191f2c86edc9343569339f101facba47e886e33e29d70da6916ca6b1101a53 in /usr/local/bin/
-```
-
--	Layers:
-	-	`sha256:e110a4a1794126ef308a49f2d65785af2f25538f06700721aad8283b81fdfa58`  
-		Last Modified: Thu, 23 Jun 2016 19:56:16 GMT  
-		Size: 2.3 MB (2310286 bytes)
-	-	`sha256:ac58758e6ad5928c40fe2ce1b955a5f9d1c4889667874887960ff0c00f2ebcf6`  
-		Last Modified: Fri, 01 Jul 2016 19:34:13 GMT  
-		Size: 343.9 KB (343924 bytes)
-	-	`sha256:6f327cd195661b5f819d7acec848f945c3d25c3a0dad8932ffdb944511a25165`  
-		Last Modified: Fri, 22 Jul 2016 21:32:30 GMT  
-		Size: 435.0 B
-	-	`sha256:270731e1aaba6eeaf8a3fb441eb65e7b1184c966191020ba703a8ef6e2569835`  
-		Last Modified: Fri, 22 Jul 2016 21:32:53 GMT  
-		Size: 70.2 MB (70167669 bytes)
-	-	`sha256:348b4b245822c19d09d876b1467a7b08ec23daa3ed28884da8ede6eb68d60177`  
-		Last Modified: Fri, 22 Jul 2016 21:32:30 GMT  
-		Size: 123.0 B
-	-	`sha256:95e650b23b32624b8881cd401915c6399f56a4503c53b50c3e7d65a13cfad9a8`  
-		Last Modified: Fri, 22 Jul 2016 21:32:30 GMT  
-		Size: 1.3 KB (1347 bytes)
+**does not exist** (yet?)
 
 ## `golang:1.7-alpine`
 

+ 9 - 230
redis/tag-details.md

@@ -8,15 +8,15 @@
 -	[`redis:3.0-32bit`](#redis30-32bit)
 -	[`redis:3.0.7-alpine`](#redis307-alpine)
 -	[`redis:3.0-alpine`](#redis30-alpine)
--	[`redis:3.2.2`](#redis322)
+-	[`redis:3.2.3`](#redis323)
 -	[`redis:3.2`](#redis32)
 -	[`redis:3`](#redis3)
 -	[`redis:latest`](#redislatest)
--	[`redis:3.2.2-32bit`](#redis322-32bit)
+-	[`redis:3.2.3-32bit`](#redis323-32bit)
 -	[`redis:3.2-32bit`](#redis32-32bit)
 -	[`redis:3-32bit`](#redis3-32bit)
 -	[`redis:32bit`](#redis32bit)
--	[`redis:3.2.2-alpine`](#redis322-alpine)
+-	[`redis:3.2.3-alpine`](#redis323-alpine)
 -	[`redis:3.2-alpine`](#redis32-alpine)
 -	[`redis:3-alpine`](#redis3-alpine)
 -	[`redis:alpine`](#redisalpine)
@@ -517,84 +517,9 @@ CMD ["redis-server"]
 		Last Modified: Thu, 23 Jun 2016 22:00:18 GMT  
 		Size: 119.0 B
 
-## `redis:3.2.2`
+## `redis:3.2.3`
 
-```console
-$ docker pull redis@sha256:47b121ff60fa791bb2c7d355e05c0fd0ef3060251741561c38a15bf865a6b1b0
-```
-
--	Platforms:
-	-	linux; amd64
-
-### `redis:3.2.2` - linux; amd64
-
--	Docker Version: 1.10.3
--	Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json`
--	Total Size: **74.2 MB (74249958 bytes)**  
-	(compressed transfer size, not on-disk size)
--	Image ID: `sha256:2d43368b263260a4aa6c67461109f2058bdd39874b2bf9a202a33e295f978635`
--	Entrypoint: `["docker-entrypoint.sh"]`
--	Default Command: `["redis-server"]`
-
-```dockerfile
-# Thu, 28 Jul 2016 17:47:54 GMT
-ADD file:0e0565652aa852f62033d99f84892216020d30f64521ded5e72d4940bc4c9697 in /
-# Thu, 28 Jul 2016 17:47:55 GMT
-CMD ["/bin/bash"]
-# Tue, 02 Aug 2016 00:50:33 GMT
-RUN groupadd -r redis && useradd -r -g redis redis
-# Tue, 02 Aug 2016 00:51:40 GMT
-RUN apt-get update && apt-get install -y --no-install-recommends 		ca-certificates 		wget 	&& rm -rf /var/lib/apt/lists/*
-# Tue, 02 Aug 2016 00:51:41 GMT
-ENV GOSU_VERSION=1.7
-# Tue, 02 Aug 2016 00:51:47 GMT
-RUN set -x 	&& wget -O /usr/local/bin/gosu "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture)" 	&& wget -O /usr/local/bin/gosu.asc "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture).asc" 	&& export GNUPGHOME="$(mktemp -d)" 	&& gpg --keyserver ha.pool.sks-keyservers.net --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4 	&& gpg --batch --verify /usr/local/bin/gosu.asc /usr/local/bin/gosu 	&& rm -r "$GNUPGHOME" /usr/local/bin/gosu.asc 	&& chmod +x /usr/local/bin/gosu 	&& gosu nobody true
-# Tue, 02 Aug 2016 00:57:18 GMT
-ENV REDIS_VERSION=3.2.2
-# Tue, 02 Aug 2016 00:57:18 GMT
-ENV REDIS_DOWNLOAD_URL=http://download.redis.io/releases/redis-3.2.2.tar.gz
-# Tue, 02 Aug 2016 00:57:19 GMT
-ENV REDIS_DOWNLOAD_SHA1=3141be9757532139f445bd5f6f4fae293bc33d27
-# Tue, 02 Aug 2016 00:59:30 GMT
-RUN buildDeps='gcc libc6-dev make' 	&& set -x 	&& apt-get update && apt-get install -y $buildDeps --no-install-recommends 	&& rm -rf /var/lib/apt/lists/* 	&& wget -O redis.tar.gz "$REDIS_DOWNLOAD_URL" 	&& echo "$REDIS_DOWNLOAD_SHA1 *redis.tar.gz" | sha1sum -c - 	&& mkdir -p /usr/src/redis 	&& tar -xzf redis.tar.gz -C /usr/src/redis --strip-components=1 	&& rm redis.tar.gz 	&& make -C /usr/src/redis 	&& make -C /usr/src/redis install 	&& rm -r /usr/src/redis 	&& apt-get purge -y --auto-remove $buildDeps
-# Tue, 02 Aug 2016 00:59:32 GMT
-RUN mkdir /data && chown redis:redis /data
-# Tue, 02 Aug 2016 00:59:32 GMT
-VOLUME [/data]
-# Tue, 02 Aug 2016 00:59:33 GMT
-WORKDIR /data
-# Tue, 02 Aug 2016 00:59:33 GMT
-COPY file:623a677e44e5f65f2b0c0d4a65ca480984f4f1195d55853520678dec1c46c410 in /usr/local/bin/
-# Tue, 02 Aug 2016 00:59:34 GMT
-ENTRYPOINT &{["docker-entrypoint.sh"]}
-# Tue, 02 Aug 2016 00:59:34 GMT
-EXPOSE 6379/tcp
-# Tue, 02 Aug 2016 00:59:34 GMT
-CMD ["redis-server"]
-```
-
--	Layers:
-	-	`sha256:357ea8c3d80bc25792e010facfc98aee5972ebc47e290eb0d5aea3671a901cab`  
-		Last Modified: Thu, 28 Jul 2016 17:49:58 GMT  
-		Size: 51.4 MB (51365611 bytes)
-	-	`sha256:7a9b1293eb21aea4ec3a5eec6425d93063b4acf9226142fe426cda37cbd1db17`  
-		Last Modified: Tue, 02 Aug 2016 01:04:22 GMT  
-		Size: 2.0 KB (2041 bytes)
-	-	`sha256:f306a5223db9535d6373c5afbc063c8b00cdce4000a0ab60bec6f3fa5abc75ca`  
-		Last Modified: Tue, 02 Aug 2016 01:04:27 GMT  
-		Size: 16.6 MB (16609200 bytes)
-	-	`sha256:18f7595fe6936868f8503042be938038d3ea2f37128a867c7ac6bdbc648b1dfe`  
-		Last Modified: Tue, 02 Aug 2016 01:04:20 GMT  
-		Size: 807.9 KB (807935 bytes)
-	-	`sha256:8fcc2ef61a98516365daa1999f2c68d94401e8564ece83834e32ffdba2a90b19`  
-		Last Modified: Tue, 02 Aug 2016 01:05:42 GMT  
-		Size: 5.5 MB (5464253 bytes)
-	-	`sha256:4609f96f13839adbb6451aa398de9c216f4a8e3c75bb4aac949f487923408fc5`  
-		Last Modified: Tue, 02 Aug 2016 01:05:40 GMT  
-		Size: 96.0 B
-	-	`sha256:f016915f91e5d282ad61862816c5ad0f9216e8cd2d20650dd6f30cc0a791a600`  
-		Last Modified: Tue, 02 Aug 2016 01:05:40 GMT  
-		Size: 822.0 B
+**does not exist** (yet?)
 
 ## `redis:3.2`
 
@@ -833,89 +758,9 @@ CMD ["redis-server"]
 		Last Modified: Tue, 02 Aug 2016 01:05:40 GMT  
 		Size: 822.0 B
 
-## `redis:3.2.2-32bit`
-
-```console
-$ docker pull redis@sha256:d4e292c75daa6ea759481b569567dae69a6facff719b071c84a0e0b27c99293f
-```
-
--	Platforms:
-	-	linux; amd64
+## `redis:3.2.3-32bit`
 
-### `redis:3.2.2-32bit` - linux; amd64
-
--	Docker Version: 1.10.3
--	Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json`
--	Total Size: **77.9 MB (77895922 bytes)**  
-	(compressed transfer size, not on-disk size)
--	Image ID: `sha256:c262964b4bd201ea146ba5a6f27216f0f0004c1a1f693628a3c368ee00dae5b4`
--	Entrypoint: `["docker-entrypoint.sh"]`
--	Default Command: `["redis-server"]`
-
-```dockerfile
-# Thu, 28 Jul 2016 17:47:54 GMT
-ADD file:0e0565652aa852f62033d99f84892216020d30f64521ded5e72d4940bc4c9697 in /
-# Thu, 28 Jul 2016 17:47:55 GMT
-CMD ["/bin/bash"]
-# Tue, 02 Aug 2016 00:50:33 GMT
-RUN groupadd -r redis && useradd -r -g redis redis
-# Tue, 02 Aug 2016 00:51:40 GMT
-RUN apt-get update && apt-get install -y --no-install-recommends 		ca-certificates 		wget 	&& rm -rf /var/lib/apt/lists/*
-# Tue, 02 Aug 2016 00:51:41 GMT
-ENV GOSU_VERSION=1.7
-# Tue, 02 Aug 2016 00:51:47 GMT
-RUN set -x 	&& wget -O /usr/local/bin/gosu "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture)" 	&& wget -O /usr/local/bin/gosu.asc "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture).asc" 	&& export GNUPGHOME="$(mktemp -d)" 	&& gpg --keyserver ha.pool.sks-keyservers.net --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4 	&& gpg --batch --verify /usr/local/bin/gosu.asc /usr/local/bin/gosu 	&& rm -r "$GNUPGHOME" /usr/local/bin/gosu.asc 	&& chmod +x /usr/local/bin/gosu 	&& gosu nobody true
-# Tue, 02 Aug 2016 00:57:18 GMT
-ENV REDIS_VERSION=3.2.2
-# Tue, 02 Aug 2016 00:57:18 GMT
-ENV REDIS_DOWNLOAD_URL=http://download.redis.io/releases/redis-3.2.2.tar.gz
-# Tue, 02 Aug 2016 00:57:19 GMT
-ENV REDIS_DOWNLOAD_SHA1=3141be9757532139f445bd5f6f4fae293bc33d27
-# Tue, 02 Aug 2016 01:00:39 GMT
-RUN apt-get update && apt-get install -y libc6-i386 --no-install-recommends && rm -rf /var/lib/apt/lists/*
-# Tue, 02 Aug 2016 01:03:04 GMT
-RUN buildDeps='gcc gcc-multilib libc6-dev-i386 make' 	&& set -x 	&& apt-get update && apt-get install -y $buildDeps --no-install-recommends 	&& rm -rf /var/lib/apt/lists/* 	&& wget -O redis.tar.gz "$REDIS_DOWNLOAD_URL" 	&& echo "$REDIS_DOWNLOAD_SHA1 *redis.tar.gz" | sha1sum -c - 	&& mkdir -p /usr/src/redis 	&& tar -xzf redis.tar.gz -C /usr/src/redis --strip-components=1 	&& rm redis.tar.gz 	&& make -C /usr/src/redis 32bit 	&& make -C /usr/src/redis install 	&& rm -r /usr/src/redis 	&& apt-get purge -y --auto-remove $buildDeps
-# Tue, 02 Aug 2016 01:03:05 GMT
-RUN mkdir /data && chown redis:redis /data
-# Tue, 02 Aug 2016 01:03:05 GMT
-VOLUME [/data]
-# Tue, 02 Aug 2016 01:03:06 GMT
-WORKDIR /data
-# Tue, 02 Aug 2016 01:03:06 GMT
-COPY file:623a677e44e5f65f2b0c0d4a65ca480984f4f1195d55853520678dec1c46c410 in /usr/local/bin/
-# Tue, 02 Aug 2016 01:03:07 GMT
-ENTRYPOINT &{["docker-entrypoint.sh"]}
-# Tue, 02 Aug 2016 01:03:07 GMT
-EXPOSE 6379/tcp
-# Tue, 02 Aug 2016 01:03:07 GMT
-CMD ["redis-server"]
-```
-
--	Layers:
-	-	`sha256:357ea8c3d80bc25792e010facfc98aee5972ebc47e290eb0d5aea3671a901cab`  
-		Last Modified: Thu, 28 Jul 2016 17:49:58 GMT  
-		Size: 51.4 MB (51365611 bytes)
-	-	`sha256:7a9b1293eb21aea4ec3a5eec6425d93063b4acf9226142fe426cda37cbd1db17`  
-		Last Modified: Tue, 02 Aug 2016 01:04:22 GMT  
-		Size: 2.0 KB (2041 bytes)
-	-	`sha256:f306a5223db9535d6373c5afbc063c8b00cdce4000a0ab60bec6f3fa5abc75ca`  
-		Last Modified: Tue, 02 Aug 2016 01:04:27 GMT  
-		Size: 16.6 MB (16609200 bytes)
-	-	`sha256:18f7595fe6936868f8503042be938038d3ea2f37128a867c7ac6bdbc648b1dfe`  
-		Last Modified: Tue, 02 Aug 2016 01:04:20 GMT  
-		Size: 807.9 KB (807935 bytes)
-	-	`sha256:bd6db3102d8fe7d9a4908187c238c03a7e848be61602d11037515f3aa0f1a35b`  
-		Last Modified: Tue, 02 Aug 2016 01:06:27 GMT  
-		Size: 4.2 MB (4224144 bytes)
-	-	`sha256:c94d879be311f1e645e145f0021758f2387fe496ed261fb798d34b57b733ffe0`  
-		Last Modified: Tue, 02 Aug 2016 01:06:28 GMT  
-		Size: 4.9 MB (4886073 bytes)
-	-	`sha256:5d28b48ad27bb423ec7d632e2d7dfbf623a5ffd5437180068164d66facae9884`  
-		Last Modified: Tue, 02 Aug 2016 01:06:26 GMT  
-		Size: 96.0 B
-	-	`sha256:be7fff399cd6d0c766810daa00d2226acf09924275674b67677683d713b6edcf`  
-		Last Modified: Tue, 02 Aug 2016 01:06:25 GMT  
-		Size: 822.0 B
+**does not exist** (yet?)
 
 ## `redis:3.2-32bit`
 
@@ -1169,75 +1014,9 @@ CMD ["redis-server"]
 		Last Modified: Tue, 02 Aug 2016 01:06:25 GMT  
 		Size: 822.0 B
 
-## `redis:3.2.2-alpine`
-
-```console
-$ docker pull redis@sha256:62496a4357f2e75db743c3d448da7adb16bc88a53e07b12ea36113d99efbf9ae
-```
-
--	Platforms:
-	-	linux; amd64
-
-### `redis:3.2.2-alpine` - linux; amd64
-
--	Docker Version: 1.10.3
--	Manifest MIME: `application/vnd.docker.distribution.manifest.v2+json`
--	Total Size: **7.6 MB (7637510 bytes)**  
-	(compressed transfer size, not on-disk size)
--	Image ID: `sha256:bf00bce24717b96ed87d34842238bc09ee40317ec243debcad227d85350f6dea`
--	Entrypoint: `["docker-entrypoint.sh"]`
--	Default Command: `["redis-server"]`
-
-```dockerfile
-# Thu, 23 Jun 2016 19:55:18 GMT
-ADD file:852e9d0cb9d906535af512a89339fc70b2873a0f94defbcbe41cd44942dd6ac8 in /
-# Thu, 23 Jun 2016 21:59:03 GMT
-RUN addgroup -S redis && adduser -S -G redis redis
-# Thu, 23 Jun 2016 21:59:06 GMT
-RUN apk add --no-cache 'su-exec>=0.2'
-# Tue, 02 Aug 2016 01:03:08 GMT
-ENV REDIS_VERSION=3.2.2
-# Tue, 02 Aug 2016 01:03:09 GMT
-ENV REDIS_DOWNLOAD_URL=http://download.redis.io/releases/redis-3.2.2.tar.gz
-# Tue, 02 Aug 2016 01:03:09 GMT
-ENV REDIS_DOWNLOAD_SHA1=3141be9757532139f445bd5f6f4fae293bc33d27
-# Tue, 02 Aug 2016 01:04:05 GMT
-RUN set -x 	&& apk add --no-cache --virtual .build-deps 		gcc 		linux-headers 		make 		musl-dev 		tar 	&& wget -O redis.tar.gz "$REDIS_DOWNLOAD_URL" 	&& echo "$REDIS_DOWNLOAD_SHA1 *redis.tar.gz" | sha1sum -c - 	&& mkdir -p /usr/src/redis 	&& tar -xzf redis.tar.gz -C /usr/src/redis --strip-components=1 	&& rm redis.tar.gz 	&& make -C /usr/src/redis 	&& make -C /usr/src/redis install 	&& rm -r /usr/src/redis 	&& apk del .build-deps
-# Tue, 02 Aug 2016 01:04:07 GMT
-RUN mkdir /data && chown redis:redis /data
-# Tue, 02 Aug 2016 01:04:07 GMT
-VOLUME [/data]
-# Tue, 02 Aug 2016 01:04:07 GMT
-WORKDIR /data
-# Tue, 02 Aug 2016 01:04:08 GMT
-COPY file:869e36f581ffa336718eae9150af15c758eb4bab174ab05f374d099dd811cf5d in /usr/local/bin/
-# Tue, 02 Aug 2016 01:04:08 GMT
-ENTRYPOINT &{["docker-entrypoint.sh"]}
-# Tue, 02 Aug 2016 01:04:09 GMT
-EXPOSE 6379/tcp
-# Tue, 02 Aug 2016 01:04:09 GMT
-CMD ["redis-server"]
-```
+## `redis:3.2.3-alpine`
 
--	Layers:
-	-	`sha256:e110a4a1794126ef308a49f2d65785af2f25538f06700721aad8283b81fdfa58`  
-		Last Modified: Thu, 23 Jun 2016 19:56:16 GMT  
-		Size: 2.3 MB (2310286 bytes)
-	-	`sha256:bccbb6980b59cefac1cb385fee9337a42e69c0f2af7b0446e8d8bdb3e7660748`  
-		Last Modified: Thu, 23 Jun 2016 22:00:20 GMT  
-		Size: 31.5 KB (31496 bytes)
-	-	`sha256:0e8c804c16443f8c8b05d1a0b9fc07ac6b68e8225368e6382f8c812d306022c8`  
-		Last Modified: Thu, 23 Jun 2016 22:00:19 GMT  
-		Size: 7.9 KB (7925 bytes)
-	-	`sha256:82da6fbd82ddfc10a27a95302627367715a4a59bfb3bb6b6cb2e1ff06fd7f197`  
-		Last Modified: Tue, 02 Aug 2016 01:07:14 GMT  
-		Size: 5.3 MB (5286890 bytes)
-	-	`sha256:ae0a4a787a20ff0578a65f59378b0b474c0df729aaa521362923dab7a87f4b0e`  
-		Last Modified: Tue, 02 Aug 2016 01:07:12 GMT  
-		Size: 99.0 B
-	-	`sha256:c1e3916dec7cd618b853711562b7a8a9105eb205aa6307606bbae418f06fad73`  
-		Last Modified: Tue, 02 Aug 2016 01:07:12 GMT  
-		Size: 814.0 B
+**does not exist** (yet?)
 
 ## `redis:3.2-alpine`