Browse Source

Merge remote-tracking branch 'upstream/master'

Luigi Dell'Aquila 8 years ago
parent
commit
114db40125
100 changed files with 1574 additions and 1051 deletions
  1. 26 30
      bashbrew/Dockerfile.release
  2. 9 1
      bashbrew/go/src/bashbrew/cmd-push.go
  3. 3 1
      bashbrew/go/src/bashbrew/repo.go
  4. 0 56
      bashbrew/manifest-tool.patch
  5. 2 2
      diff-pr.sh
  6. 4 3
      library/aerospike
  7. 78 10
      library/alpine
  8. 5 3
      library/arangodb
  9. 10 2
      library/bash
  10. 2 2
      library/bonita
  11. 18 18
      library/buildpack-deps
  12. 10 10
      library/busybox
  13. 4 4
      library/cassandra
  14. 4 4
      library/chronograf
  15. 2 2
      library/clearlinux
  16. 5 5
      library/clojure
  17. 2 2
      library/consul
  18. 9 10
      library/couchbase
  19. 12 8
      library/couchdb
  20. 2 2
      library/crate
  21. 21 21
      library/debian
  22. 52 49
      library/docker
  23. 6 6
      library/drupal
  24. 1 1
      library/eggdrop
  25. 21 0
      library/elasticsearch
  26. 6 6
      library/erlang
  27. 7 0
      library/euleros
  28. 13 4
      library/fedora
  29. 80 16
      library/flink
  30. 3 3
      library/fsharp
  31. 81 17
      library/gazebo
  32. 9 2
      library/gcc
  33. 10 10
      library/ghost
  34. 31 27
      library/golang
  35. 20 20
      library/gradle
  36. 30 30
      library/groovy
  37. 23 8
      library/haxe
  38. 9 2
      library/hello-seattle
  39. 9 2
      library/hello-world
  40. 9 2
      library/hola-mundo
  41. 7 7
      library/httpd
  42. 8 8
      library/ibmjava
  43. 12 12
      library/influxdb
  44. 5 5
      library/irssi
  45. 7 6
      library/jetty
  46. 8 0
      library/jruby
  47. 3 3
      library/julia
  48. 4 4
      library/kapacitor
  49. 13 0
      library/kibana
  50. 11 8
      library/kong
  51. 21 0
      library/logstash
  52. 9 9
      library/mariadb
  53. 34 34
      library/maven
  54. 5 7
      library/mediawiki
  55. 5 5
      library/memcached
  56. 6 6
      library/mongo
  57. 12 7
      library/mono
  58. 6 6
      library/mysql
  59. 23 3
      library/nats-streaming
  60. 56 6
      library/neo4j
  61. 39 37
      library/neurodebian
  62. 17 17
      library/nginx
  63. 92 62
      library/node
  64. 8 8
      library/odoo
  65. 29 29
      library/openjdk
  66. 3 3
      library/percona
  67. 95 95
      library/php
  68. 4 4
      library/piwik
  69. 21 21
      library/postgres
  70. 42 32
      library/python
  71. 8 8
      library/rabbitmq
  72. 2 2
      library/rakudo-star
  73. 2 2
      library/rapidoid
  74. 2 2
      library/redis
  75. 12 12
      library/redmine
  76. 2 2
      library/rocket.chat
  77. 31 10
      library/ros
  78. 29 14
      library/ruby
  79. 7 7
      library/rust
  80. 11 11
      library/sentry
  81. 43 28
      library/solr
  82. 6 8
      library/sonarqube
  83. 6 7
      library/swift
  84. 6 6
      library/swipl
  85. 6 6
      library/telegraf
  86. 12 12
      library/tomcat
  87. 5 15
      library/traefik
  88. 12 12
      library/ubuntu
  89. 2 2
      library/vault
  90. 1 1
      library/websphere-liberty
  91. 24 24
      library/wordpress
  92. 4 4
      library/xwiki
  93. 11 4
      library/zookeeper
  94. 10 2
      test-pr.sh
  95. 4 0
      test/config.sh
  96. 1 1
      test/run.sh
  97. 1 1
      test/tests/golang-hello-world/run.sh
  98. 3 3
      test/tests/python-hy/container.sh
  99. 19 0
      test/tests/rabbitmq-basics/receive.py
  100. 39 0
      test/tests/rabbitmq-basics/run.sh

+ 26 - 30
bashbrew/Dockerfile.release

@@ -1,4 +1,4 @@
-FROM golang:1.8-alpine
+FROM golang:1.9-alpine
 
 RUN apk add --no-cache \
 		file \
@@ -24,42 +24,37 @@ ENV BASHBREW_ARCHES \
 COPY .bashbrew-arch-to-goenv.sh /usr/local/bin/
 
 # https://github.com/estesp/manifest-tool/releases
-ENV MANIFEST_TOOL_VERSION 0.6.0
+ENV MANIFEST_TOOL_VERSION 0.7.0
 # gpg: key 0F386284C03A1162: public key "Philip Estes <[email protected]>" imported
-#ENV MANIFEST_TOOL_GPG_KEY 27F3EA268A97867EAF0BD05C0F386284C03A1162
-# TODO consume Phil's releases again (once he fixes https://github.com/estesp/manifest-tool/issues/47 properly)
-
-COPY manifest-tool.patch ./
+ENV MANIFEST_TOOL_GPG_KEY 27F3EA268A97867EAF0BD05C0F386284C03A1162
 
 RUN set -euxo pipefail; \
+	\
+	export GNUPGHOME="$(mktemp -d)"; \
+	gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$MANIFEST_TOOL_GPG_KEY"; \
 	\
 	mkdir -p bin; \
 	\
-	mkdir -p manifest-tool/src/github.com/estesp/manifest-tool; \
-	wget -qO- "https://github.com/estesp/manifest-tool/archive/v${MANIFEST_TOOL_VERSION}.tar.gz" \
-		| tar -xz --strip-components=1 -C manifest-tool/src/github.com/estesp/manifest-tool; \
-	( cd manifest-tool/src/github.com/estesp/manifest-tool && patch -p1 ) < manifest-tool.patch; \
 	for bashbrewArch in $BASHBREW_ARCHES; do \
 		( \
 			goEnv="$(.bashbrew-arch-to-goenv.sh "$bashbrewArch")"; eval "$goEnv"; \
+			srcBin="manifest-tool-$GOOS-$GOARCH"; \
+			if [ "$GOARCH" = 'arm' ]; then [ -n "$GOARM" ]; srcBin="${srcBin}v$GOARM"; fi; \
 			[ "$GOOS" = 'windows' ] && ext='.exe' || ext=; \
-			GOPATH="$PWD/manifest-tool" \
-				go build \
-					-a -v \
-					-ldflags '-s -w' \
-# see https://github.com/golang/go/issues/9737#issuecomment-276817652 (and following comments) -- installsuffix is necessary (for now) to keep ARM
-# can remove "$bashbrewArch" from "installsuffix" in Go 1.10+ (https://github.com/golang/go/commit/1b53f15ebb00dd158af674df410c7941abb2b933)
-					-tags netgo -installsuffix "netgo-$bashbrewArch" \
-					-o "$PWD/bin/manifest-tool-$bashbrewArch$ext" \
-					github.com/estesp/manifest-tool \
-			; \
-			ls -lAFh "bin/manifest-tool-$bashbrewArch$ext"; \
-			file "bin/manifest-tool-$bashbrewArch$ext"; \
+			srcBin="$srcBin$ext"; \
+			targetBin="bin/manifest-tool-$bashbrewArch$ext"; \
+			wget -O "$targetBin.asc" "https://github.com/estesp/manifest-tool/releases/download/v${MANIFEST_TOOL_VERSION}/$srcBin.asc"; \
+			wget -O "$targetBin" "https://github.com/estesp/manifest-tool/releases/download/v${MANIFEST_TOOL_VERSION}/$srcBin"; \
+			gpg --batch --verify "$targetBin.asc" "$targetBin"; \
+			ls -lAFh "$targetBin"*; \
+			file "$targetBin"*; \
 		) \
 	done; \
 	\
-	ls -l bin; \
-	file bin/*
+	rm -rf "$GNUPGHOME"; \
+	\
+	ls -lAFh bin/manifest-tool-*; \
+	file bin/manifest-tool-*
 
 COPY go .
 
@@ -72,17 +67,18 @@ RUN set -euxo pipefail; \
 			goEnv="$(.bashbrew-arch-to-goenv.sh "$bashbrewArch")"; eval "$goEnv"; \
 			[ "$GOOS" = 'windows' ] && ext='.exe' || ext=; \
 			\
+			targetBin="bin/bashbrew-$bashbrewArch$ext"; \
 			go build \
 				-a -v \
 				-ldflags '-s -w' \
-	# see https://github.com/golang/go/issues/9737#issuecomment-276817652 (and following comments) -- installsuffix is necessary (for now) to keep ARM
-	# can remove "$bashbrewArch" from "installsuffix" in Go 1.10+ (https://github.com/golang/go/commit/1b53f15ebb00dd158af674df410c7941abb2b933)
-				-tags netgo -installsuffix "netgo-$bashbrewArch" \
-				-o "bin/bashbrew-$bashbrewArch$ext" \
+				-tags netgo -installsuffix netgo \
+				-o "$targetBin" \
 				./src/bashbrew \
 			; \
+			ls -lAFh "$targetBin"; \
+			file "$targetBin"; \
 		) \
 	done; \
 	\
-	ls -l bin; \
-	file bin/*
+	ls -lAFh bin/bashbrew-*; \
+	file bin/bashbrew-*

+ 9 - 1
bashbrew/go/src/bashbrew/cmd-push.go

@@ -3,6 +3,7 @@ package main
 import (
 	"fmt"
 	"os"
+	"path"
 	"time"
 
 	"github.com/codegangsta/cli"
@@ -28,12 +29,19 @@ func cmdPush(c *cli.Context) error {
 			return cli.NewMultiError(fmt.Errorf(`failed fetching repo %q`, repo), err)
 		}
 
+		tagRepo := path.Join(namespace, r.RepoName)
 		for _, entry := range r.Entries() {
 			if r.SkipConstraints(entry) {
 				continue
 			}
 
-			for _, tag := range r.Tags(namespace, uniq, entry) {
+			// we can't use "r.Tags()" here because it will include SharedTags, which we never want to push directly (see "cmd-put-shared.go")
+			for i, tag := range entry.Tags {
+				if uniq && i > 0 {
+					break
+				}
+				tag = tagRepo + ":" + tag
+
 				created := dockerCreated(tag)
 				lastUpdated := fetchDockerHubTagMeta(tag).lastUpdatedTime()
 				if created.After(lastUpdated) {

+ 3 - 1
bashbrew/go/src/bashbrew/repo.go

@@ -147,7 +147,9 @@ func (r Repo) Entries() []manifest.Manifest2822Entry {
 func (r Repo) Tags(namespace string, uniq bool, entry manifest.Manifest2822Entry) []string {
 	tagRepo := path.Join(namespace, r.RepoName)
 	ret := []string{}
-	for i, tag := range entry.Tags {
+	tags := append([]string{}, entry.Tags...)
+	tags = append(tags, entry.SharedTags...)
+	for i, tag := range tags {
 		if uniq && i > 0 {
 			break
 		}

+ 0 - 56
bashbrew/manifest-tool.patch

@@ -1,56 +0,0 @@
-https://github.com/estesp/manifest-tool/issues/47
-
-diff --git a/vendor/github.com/docker/distribution/reference/reference.go b/vendor/github.com/docker/distribution/reference/reference.go
-index 52da523..3cf3d98 100644
---- a/vendor/github.com/docker/distribution/reference/reference.go
-+++ b/vendor/github.com/docker/distribution/reference/reference.go
-@@ -100,6 +100,13 @@ func (f *Field) UnmarshalText(p []byte) error {
- 	return nil
- }
- 
-+func remoteName(name string) string {
-+	if !strings.ContainsRune(name, '/') {
-+		return "library/" + name
-+	}
-+	return name
-+}
-+
- // Named is an object with a full name
- type Named interface {
- 	Reference
-@@ -304,7 +311,7 @@ func (r reference) String() string {
- }
- 
- func (r reference) Name() string {
--	return r.name
-+	return remoteName(r.name)
- }
- 
- func (r reference) Tag() string {
-@@ -322,7 +329,7 @@ func (r repository) String() string {
- }
- 
- func (r repository) Name() string {
--	return string(r)
-+	return remoteName(string(r))
- }
- 
- type digestReference digest.Digest
-@@ -345,7 +352,7 @@ func (t taggedReference) String() string {
- }
- 
- func (t taggedReference) Name() string {
--	return t.name
-+	return remoteName(t.name)
- }
- 
- func (t taggedReference) Tag() string {
-@@ -362,7 +369,7 @@ func (c canonicalReference) String() string {
- }
- 
- func (c canonicalReference) Name() string {
--	return c.name
-+	return remoteName(c.name)
- }
- 
- func (c canonicalReference) Digest() digest.Digest {

+ 2 - 2
diff-pr.sh

@@ -202,7 +202,7 @@ copy-tar() {
 mkdir temp
 git -C temp init --quiet
 
-bashbrew list "${images[@]}" | sort -V > temp/_bashbrew-list || :
+bashbrew list "${images[@]}" | sort -uV > temp/_bashbrew-list || :
 bashbrew cat --format "$archesListTemplate" "${images[@]}" | sort -V > temp/_bashbrew-arches || :
 bashbrew cat --format "$sharedTagsListTemplate" "${images[@]}" | grep -vE '^$' | sort -V > temp/_bashbrew-shared-tags || :
 for image in "${images[@]}"; do
@@ -219,7 +219,7 @@ git -C temp commit --quiet --allow-empty -m 'initial' || :
 git -C oi checkout --quiet pull
 
 git -C temp rm --quiet -rf . || :
-bashbrew list "${images[@]}" | sort -V > temp/_bashbrew-list || :
+bashbrew list "${images[@]}" | sort -uV > temp/_bashbrew-list || :
 bashbrew cat --format "$archesListTemplate" "${images[@]}" | sort -V > temp/_bashbrew-arches || :
 bashbrew cat --format "$sharedTagsListTemplate" "${images[@]}" | grep -vE '^$' | sort -V > temp/_bashbrew-shared-tags || :
 script="$(bashbrew cat -f "$template" "${images[@]}")"

+ 4 - 3
library/aerospike

@@ -1,6 +1,7 @@
 # maintainer: Lucien Volmar <[email protected]> (@volmarl)
 
 3.12.1.3: git://github.com/aerospike/aerospike-server.docker@eb4758c8bcb30158cef593383ac0aab119b066c1
-3.13.0.7: git://github.com/aerospike/aerospike-server.docker@0b1246af2674c7668b332964b27dfef6773935fe
-3.14.1.4: git://github.com/aerospike/aerospike-server.docker@a4a15147e1e3b782fe365cd8d2d3e686426f0a03
-latest: git://github.com/aerospike/aerospike-server.docker@a4a15147e1e3b782fe365cd8d2d3e686426f0a03
+3.13.0.8: git://github.com/aerospike/aerospike-server.docker@47d42fba5baf0ee09f1f825b7aeaec4a07180176
+3.14.1.5: git://github.com/aerospike/aerospike-server.docker@d1c54c331883389884f1bd60f3572568378e4bfe
+3.15.0.2: git://github.com/aerospike/aerospike-server.docker@e7e0b308068fba99e248d9f649799f876534a260
+latest: git://github.com/aerospike/aerospike-server.docker@e7e0b308068fba99e248d9f649799f876534a260

+ 78 - 10
library/alpine

@@ -1,10 +1,78 @@
-# maintainer: Glider Labs <[email protected]> (@gliderlabs)
-
-3.1: git://github.com/gliderlabs/docker-alpine@6b5697882749ae8fb8a1c5ad6ba87d3b59ab0a2a versions/library-3.1
-3.2: git://github.com/gliderlabs/docker-alpine@3fbbd4c387d2934b13ea2526ce82f80e20301278 versions/library-3.2
-3.3: git://github.com/gliderlabs/docker-alpine@12b2d14e105813a3ff0f4bf7c6a61058c83debad versions/library-3.3
-3.4: git://github.com/gliderlabs/docker-alpine@7f558cc0542cf47b28686385cc0a2cc41fe10325 versions/library-3.4
-3.5: git://github.com/gliderlabs/docker-alpine@9b354b8bb3cc7b343e72ef4ec34ef38ec525728d versions/library-3.5
-3.6: git://github.com/gliderlabs/docker-alpine@c6cb2bbffbc92d4c35cdaf584dd1c43a860104ea versions/library-3.6
-latest: git://github.com/gliderlabs/docker-alpine@c6cb2bbffbc92d4c35cdaf584dd1c43a860104ea versions/library-3.6
-edge: git://github.com/gliderlabs/docker-alpine@c0f432b0e678c1096e041e7e63a089444ad544c9 versions/library-edge
+# autogenerated by https://github.com/gliderlabs/docker-alpine/blob/master/build
+
+Maintainers: Glider Labs <[email protected]> (@gliderlabs)
+GitRepo: https://github.com/gliderlabs/docker-alpine.git
+GitFetch: refs/heads/release
+GitCommit: f2e9aa97b32b3f537dca61da066711d3b017ab3a
+
+Tags: 3.6, latest
+Architectures: arm64v8, arm32v6, ppc64le, s390x, amd64, i386
+arm64v8-GitFetch: refs/heads/rootfs/library-3.6/aarch64
+arm64v8-GitCommit: 23170e382bf9f6e6a10a5618101f1a434586ba52
+arm64v8-Directory: versions/library-3.6/aarch64
+arm32v6-GitFetch: refs/heads/rootfs/library-3.6/armhf
+arm32v6-GitCommit: 57548db3751630dc3548454a873f500cecb156eb
+arm32v6-Directory: versions/library-3.6/armhf
+ppc64le-GitFetch: refs/heads/rootfs/library-3.6/ppc64le
+ppc64le-GitCommit: 34b61e92daf792d06592aa88fb78e353af757434
+ppc64le-Directory: versions/library-3.6/ppc64le
+s390x-GitFetch: refs/heads/rootfs/library-3.6/s390x
+s390x-GitCommit: f2596f5e54c2eee1b37dc42b83422a9a4a09e16d
+s390x-Directory: versions/library-3.6/s390x
+amd64-GitFetch: refs/heads/rootfs/library-3.6/x86_64
+amd64-GitCommit: 0450fe826ccdedf63dd70da1ad953f1aaf932225
+amd64-Directory: versions/library-3.6/x86_64
+i386-GitFetch: refs/heads/rootfs/library-3.6/x86
+i386-GitCommit: ec586c792873b3f09fd0c50f6ace0b61aad60eb2
+i386-Directory: versions/library-3.6/x86
+
+Tags: edge
+Architectures: arm64v8, arm32v6, ppc64le, s390x, amd64, i386
+arm64v8-GitFetch: refs/heads/rootfs/library-edge/aarch64
+arm64v8-GitCommit: 1903a85da34bcd78249ce2b2204f0f7fe22c9489
+arm64v8-Directory: versions/library-edge/aarch64
+arm32v6-GitFetch: refs/heads/rootfs/library-edge/armhf
+arm32v6-GitCommit: afa0aaacb6cc77e0be9696dc8c026fe1fcbfa44d
+arm32v6-Directory: versions/library-edge/armhf
+ppc64le-GitFetch: refs/heads/rootfs/library-edge/ppc64le
+ppc64le-GitCommit: 474a968a0ccbba9e3b20ffb0338337af8b9348b2
+ppc64le-Directory: versions/library-edge/ppc64le
+s390x-GitFetch: refs/heads/rootfs/library-edge/s390x
+s390x-GitCommit: b9345dae00ffa7a7061f9b7c4cb64a7ee7a90a3c
+s390x-Directory: versions/library-edge/s390x
+amd64-GitFetch: refs/heads/rootfs/library-edge/x86_64
+amd64-GitCommit: 1aa169fe8d573c0b6d8fe0d446f61be0700c8008
+amd64-Directory: versions/library-edge/x86_64
+i386-GitFetch: refs/heads/rootfs/library-edge/x86
+i386-GitCommit: d17079a97138109d5ef48206f8fa276090d3e49d
+i386-Directory: versions/library-edge/x86
+
+Tags: 3.1
+Architectures: amd64
+amd64-GitFetch: refs/heads/rootfs/library-3.1
+amd64-GitCommit: 956c360824ed3629d8e132e1c13299be73120f88
+amd64-Directory: versions/library-3.1
+
+Tags: 3.2
+Architectures: amd64
+amd64-GitFetch: refs/heads/rootfs/library-3.2
+amd64-GitCommit: 8708779d075ac943b5d57b60cf17a6d2dacfbf1b
+amd64-Directory: versions/library-3.2
+
+Tags: 3.3
+Architectures: amd64
+amd64-GitFetch: refs/heads/rootfs/library-3.3
+amd64-GitCommit: b8e69ac308464f18e5fc8fb2da827f7e97c890ff
+amd64-Directory: versions/library-3.3
+
+Tags: 3.4
+Architectures: amd64
+amd64-GitFetch: refs/heads/rootfs/library-3.4
+amd64-GitCommit: c32ca6c6c399fe7d2ba857635ea15d0b08ac6dc5
+amd64-Directory: versions/library-3.4
+
+Tags: 3.5
+Architectures: amd64
+amd64-GitFetch: refs/heads/rootfs/library-3.5
+amd64-GitCommit: 849c93d4bd1c5490dfd146f24291a40aa430d0ed
+amd64-Directory: versions/library-3.5

+ 5 - 3
library/arangodb

@@ -5,6 +5,8 @@
 2.8.11: https://github.com/arangodb/arangodb-docker@d6fca9a137cd21345b1d380fc0e72daacb6130ce jessie/2.8.11
 
 
-3.2: https://github.com/arangodb/arangodb-docker@53829f3067e6191bbc38fb373a35fec615bd0056 stretch/3.2.4
-3.2.4: https://github.com/arangodb/arangodb-docker@53829f3067e6191bbc38fb373a35fec615bd0056 stretch/3.2.4
-latest: https://github.com/arangodb/arangodb-docker@53829f3067e6191bbc38fb373a35fec615bd0056 stretch/3.2.4
+3.2: https://github.com/arangodb/arangodb-docker@54cd33b3ee04d566e28f7b6df8a3dcfe8127e4d0 stretch/3.2.6
+3.2.6: https://github.com/arangodb/arangodb-docker@54cd33b3ee04d566e28f7b6df8a3dcfe8127e4d0 stretch/3.2.6
+latest: https://github.com/arangodb/arangodb-docker@54cd33b3ee04d566e28f7b6df8a3dcfe8127e4d0 stretch/3.2.6
+3.1: https://github.com/arangodb/arangodb-docker@9fa9b5a4675fec5537a7c8679829ac6ce533237e stretch/3.1.28
+3.1.28: https://github.com/arangodb/arangodb-docker@9fa9b5a4675fec5537a7c8679829ac6ce533237e stretch/3.1.28

+ 10 - 2
library/bash

@@ -1,36 +1,44 @@
-# this file is generated via https://github.com/tianon/docker-bash/blob/cd1de3dfc885b3395cd354ddb988922350b092a7/generate-stackbrew-library.sh
+# this file is generated via https://github.com/tianon/docker-bash/blob/81f17babadb63ed497cb43c48442633a15989fef/generate-stackbrew-library.sh
 
 Maintainers: Tianon Gravi <[email protected]> (@tianon)
 GitRepo: https://github.com/tianon/docker-bash.git
 
 Tags: 4.4.12, 4.4, 4, latest
-GitCommit: 246ce07202932c5385c76122c5a4ca2dd1328b08
+Architectures: amd64, arm32v6, arm64v8, i386, ppc64le, s390x
+GitCommit: 239d768d3010aaa5875917e44498446ef430485f
 Directory: 4.4
 
 Tags: 4.3.48, 4.3
+Architectures: amd64, arm32v6, arm64v8, i386, ppc64le, s390x
 GitCommit: 246ce07202932c5385c76122c5a4ca2dd1328b08
 Directory: 4.3
 
 Tags: 4.2.53, 4.2
+Architectures: amd64, arm32v6, arm64v8, i386, ppc64le, s390x
 GitCommit: 246ce07202932c5385c76122c5a4ca2dd1328b08
 Directory: 4.2
 
 Tags: 4.1.17, 4.1
+Architectures: amd64, arm32v6, arm64v8, i386, ppc64le, s390x
 GitCommit: 246ce07202932c5385c76122c5a4ca2dd1328b08
 Directory: 4.1
 
 Tags: 4.0.44, 4.0
+Architectures: amd64, arm32v6, arm64v8, i386, ppc64le, s390x
 GitCommit: 246ce07202932c5385c76122c5a4ca2dd1328b08
 Directory: 4.0
 
 Tags: 3.2.57, 3.2, 3
+Architectures: amd64, arm32v6, arm64v8, i386, ppc64le, s390x
 GitCommit: 246ce07202932c5385c76122c5a4ca2dd1328b08
 Directory: 3.2
 
 Tags: 3.1.23, 3.1
+Architectures: amd64, arm32v6, arm64v8, i386, ppc64le, s390x
 GitCommit: 246ce07202932c5385c76122c5a4ca2dd1328b08
 Directory: 3.1
 
 Tags: 3.0.22, 3.0
+Architectures: amd64, arm32v6, arm64v8, i386, ppc64le, s390x
 GitCommit: 246ce07202932c5385c76122c5a4ca2dd1328b08
 Directory: 3.0

+ 2 - 2
library/bonita

@@ -4,5 +4,5 @@
 # maintainer: Laurent Leseigneur <[email protected]> (@laurentleseigneur)
 
 7.4.3: git://github.com/Bonitasoft-Community/docker_bonita@5e4d4c6d86a90b2f7639215e4098097200a8751a 7.4
-7.5.4: git://github.com/Bonitasoft-Community/docker_bonita@3d28a037ecf87d6b710b1debe43ccf7fc31282e2 7.5
-latest: git://github.com/Bonitasoft-Community/docker_bonita@3d28a037ecf87d6b710b1debe43ccf7fc31282e2 7.5
+7.5.4: git://github.com/Bonitasoft-Community/docker_bonita@715b7b807ff1f7411702a158c0596db08baf1159 7.5
+latest: git://github.com/Bonitasoft-Community/docker_bonita@715b7b807ff1f7411702a158c0596db08baf1159 7.5

+ 18 - 18
library/buildpack-deps

@@ -6,7 +6,7 @@ GitRepo: https://github.com/docker-library/buildpack-deps.git
 
 Tags: artful-curl
 Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 36018aca7e9637c9c04ff623625e59de12d7f161
+GitCommit: d662dc69f910feb241f6d0c9d2cd6cc2fb6c5e6c
 Directory: artful/curl
 
 Tags: artful-scm
@@ -16,12 +16,12 @@ Directory: artful/scm
 
 Tags: artful
 Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 5d86449454958f224035b5b200bfd3be9c088ff3
+GitCommit: d7da72aaf3bb93fecf5fcb7c6ff154cb0c55d1d1
 Directory: artful
 
 Tags: buster-curl
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 72021102be2a05177d2c01e466495ba1c9d0b4f5
+GitCommit: d662dc69f910feb241f6d0c9d2cd6cc2fb6c5e6c
 Directory: buster/curl
 
 Tags: buster-scm
@@ -31,12 +31,12 @@ Directory: buster/scm
 
 Tags: buster
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 5d86449454958f224035b5b200bfd3be9c088ff3
+GitCommit: d7da72aaf3bb93fecf5fcb7c6ff154cb0c55d1d1
 Directory: buster
 
 Tags: jessie-curl
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 9f60e19008458220114f1a0b6cd3710f1015d402
+GitCommit: d662dc69f910feb241f6d0c9d2cd6cc2fb6c5e6c
 Directory: jessie/curl
 
 Tags: jessie-scm
@@ -46,12 +46,12 @@ Directory: jessie/scm
 
 Tags: jessie
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 5d86449454958f224035b5b200bfd3be9c088ff3
+GitCommit: d7da72aaf3bb93fecf5fcb7c6ff154cb0c55d1d1
 Directory: jessie
 
 Tags: sid-curl
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 9f60e19008458220114f1a0b6cd3710f1015d402
+GitCommit: d662dc69f910feb241f6d0c9d2cd6cc2fb6c5e6c
 Directory: sid/curl
 
 Tags: sid-scm
@@ -61,12 +61,12 @@ Directory: sid/scm
 
 Tags: sid
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 5d86449454958f224035b5b200bfd3be9c088ff3
+GitCommit: d7da72aaf3bb93fecf5fcb7c6ff154cb0c55d1d1
 Directory: sid
 
 Tags: stretch-curl, curl
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 9f60e19008458220114f1a0b6cd3710f1015d402
+GitCommit: d662dc69f910feb241f6d0c9d2cd6cc2fb6c5e6c
 Directory: stretch/curl
 
 Tags: stretch-scm, scm
@@ -76,12 +76,12 @@ Directory: stretch/scm
 
 Tags: stretch, latest
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 5d86449454958f224035b5b200bfd3be9c088ff3
+GitCommit: d7da72aaf3bb93fecf5fcb7c6ff154cb0c55d1d1
 Directory: stretch
 
 Tags: trusty-curl
 Architectures: amd64, arm32v7, arm64v8, i386, ppc64le
-GitCommit: 9f60e19008458220114f1a0b6cd3710f1015d402
+GitCommit: d662dc69f910feb241f6d0c9d2cd6cc2fb6c5e6c
 Directory: trusty/curl
 
 Tags: trusty-scm
@@ -91,12 +91,12 @@ Directory: trusty/scm
 
 Tags: trusty
 Architectures: amd64, arm32v7, arm64v8, i386, ppc64le
-GitCommit: 5d86449454958f224035b5b200bfd3be9c088ff3
+GitCommit: d7da72aaf3bb93fecf5fcb7c6ff154cb0c55d1d1
 Directory: trusty
 
 Tags: wheezy-curl
 Architectures: amd64, arm32v5, arm32v7, i386
-GitCommit: 9f60e19008458220114f1a0b6cd3710f1015d402
+GitCommit: d662dc69f910feb241f6d0c9d2cd6cc2fb6c5e6c
 Directory: wheezy/curl
 
 Tags: wheezy-scm
@@ -106,12 +106,12 @@ Directory: wheezy/scm
 
 Tags: wheezy
 Architectures: amd64, arm32v5, arm32v7, i386
-GitCommit: 5d86449454958f224035b5b200bfd3be9c088ff3
+GitCommit: d7da72aaf3bb93fecf5fcb7c6ff154cb0c55d1d1
 Directory: wheezy
 
 Tags: xenial-curl
 Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 9f60e19008458220114f1a0b6cd3710f1015d402
+GitCommit: d662dc69f910feb241f6d0c9d2cd6cc2fb6c5e6c
 Directory: xenial/curl
 
 Tags: xenial-scm
@@ -121,12 +121,12 @@ Directory: xenial/scm
 
 Tags: xenial
 Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 5d86449454958f224035b5b200bfd3be9c088ff3
+GitCommit: d7da72aaf3bb93fecf5fcb7c6ff154cb0c55d1d1
 Directory: xenial
 
 Tags: zesty-curl
 Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 9f60e19008458220114f1a0b6cd3710f1015d402
+GitCommit: d662dc69f910feb241f6d0c9d2cd6cc2fb6c5e6c
 Directory: zesty/curl
 
 Tags: zesty-scm
@@ -136,5 +136,5 @@ Directory: zesty/scm
 
 Tags: zesty
 Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 5d86449454958f224035b5b200bfd3be9c088ff3
+GitCommit: d7da72aaf3bb93fecf5fcb7c6ff154cb0c55d1d1
 Directory: zesty

+ 10 - 10
library/busybox

@@ -1,34 +1,34 @@
-# this file is generated via https://github.com/docker-library/busybox/blob/4a92cf317f8c3dfac06c79484f4f3e34d83256e3/generate-stackbrew-library.sh
+# this file is generated via https://github.com/docker-library/busybox/blob/cba1373b305b3676b0a41a8da05c9885e420d5e9/generate-stackbrew-library.sh
 
 Maintainers: Tianon Gravi <[email protected]> (@tianon),
              Joseph Ferguson <[email protected]> (@yosifkit),
              Jérôme Petazzoni <[email protected]> (@jpetazzo)
 GitRepo: https://github.com/docker-library/busybox.git
-GitCommit: 4a92cf317f8c3dfac06c79484f4f3e34d83256e3
+GitCommit: cba1373b305b3676b0a41a8da05c9885e420d5e9
 # https://github.com/docker-library/busybox/tree/dist-amd64
 amd64-GitFetch: refs/heads/dist-amd64
-amd64-GitCommit: 0d5f38edcc90e99c3288df859cbc27d72f2b5e88
+amd64-GitCommit: 8d817055ba8420f907825ca650370a727c4cb1f2
 # https://github.com/docker-library/busybox/tree/dist-arm32v5
 arm32v5-GitFetch: refs/heads/dist-arm32v5
-arm32v5-GitCommit: b6e67ee942f0ecae7819d31604ada99f1a408e8d
+arm32v5-GitCommit: 716440082330ad364ac3e4cebcb08d537fb6172b
 # https://github.com/docker-library/busybox/tree/dist-arm32v6
 arm32v6-GitFetch: refs/heads/dist-arm32v6
-arm32v6-GitCommit: 757c14ea6d0b4f9b6045c34c9670e2c943c42c21
+arm32v6-GitCommit: f8deca5b343a6e1118fcb0da2fdfd4649000ebae
 # https://github.com/docker-library/busybox/tree/dist-arm32v7
 arm32v7-GitFetch: refs/heads/dist-arm32v7
-arm32v7-GitCommit: aee4ce152d20ef71b2521e7599055e64b2e0a874
+arm32v7-GitCommit: 0f31ff300c3fe878e922dc378af2a9ff0ca98570
 # https://github.com/docker-library/busybox/tree/dist-arm64v8
 arm64v8-GitFetch: refs/heads/dist-arm64v8
-arm64v8-GitCommit: 23fbd9c43e0f4bec7605091bfba23db278c367ac
+arm64v8-GitCommit: fd80d345c01369022955be4bd3a9422f3f6e0776
 # https://github.com/docker-library/busybox/tree/dist-i386
 i386-GitFetch: refs/heads/dist-i386
-i386-GitCommit: 13b3f91d668f61470546573f0804f67ea24dd7cc
+i386-GitCommit: ed7b5a0b21c9918b693e87a0f97c452a09841757
 # https://github.com/docker-library/busybox/tree/dist-ppc64le
 ppc64le-GitFetch: refs/heads/dist-ppc64le
-ppc64le-GitCommit: ca0b6563d934175967ca9a1a0fd24eab7550db60
+ppc64le-GitCommit: 8bdcee6aeae1988740983591baa95e62be575543
 # https://github.com/docker-library/busybox/tree/dist-s390x
 s390x-GitFetch: refs/heads/dist-s390x
-s390x-GitCommit: ab8a925d278a68cf755a24e61a1f571d50535da1
+s390x-GitCommit: 1c111d7ce87a47b57067f9c9bbbedaba9b94763c
 
 Tags: 1.27.2-uclibc, 1.27-uclibc, 1-uclibc, uclibc
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386

+ 4 - 4
library/cassandra

@@ -14,12 +14,12 @@ Architectures: amd64, i386
 GitCommit: e5698d3847ed4c4378b1171ae77b5c5ee0e58125
 Directory: 2.2
 
-Tags: 3.0.14, 3.0
+Tags: 3.0.15, 3.0
 Architectures: amd64, arm64v8, i386, ppc64le
-GitCommit: ca3c9df03cab318d34377bba0610c741253b0466
+GitCommit: 50fbd6b9fe453e80f045d3a84f55c77240369658
 Directory: 3.0
 
-Tags: 3.11.0, 3.11, 3, latest
+Tags: 3.11.1, 3.11, 3, latest
 Architectures: amd64, arm64v8, i386, ppc64le
-GitCommit: ca3c9df03cab318d34377bba0610c741253b0466
+GitCommit: b77e932d6935318f599026cd1ccf0a2697b3224a
 Directory: 3.11

+ 4 - 4
library/chronograf

@@ -1,12 +1,12 @@
 Maintainers: Jonathan A. Sternberg <[email protected]> (@jsternberg)
 
-Tags: 1.3, 1.3.8, 1.3.8.3, latest
+Tags: 1.3, 1.3.10, 1.3.10.0, latest
 Architectures: amd64, arm32v7, arm64v8
 GitRepo: git://github.com/influxdata/influxdata-docker
-GitCommit: acbcd5dacee618f24a2c60c3505e49323ac1f676
+GitCommit: 74b2e90cd794ba5cba219d34876ca6425b069970
 Directory: chronograf/1.3
 
-Tags: 1.3-alpine, 1.3.8-alpine, 1.3.8.3-alpine, alpine
+Tags: 1.3-alpine, 1.3.10-alpine, 1.3.10.0-alpine, alpine
 GitRepo: git://github.com/influxdata/influxdata-docker
-GitCommit: acbcd5dacee618f24a2c60c3505e49323ac1f676
+GitCommit: 74b2e90cd794ba5cba219d34876ca6425b069970
 Directory: chronograf/1.3/alpine

+ 2 - 2
library/clearlinux

@@ -1,4 +1,4 @@
 # maintainer: William Douglas <[email protected]> (@bryteise)
 
-latest: git://github.com/clearlinux/docker-brew-clearlinux@1856b9f9d8340774f4a77171bac9e1476fc0b8c1
-base: git://github.com/clearlinux/docker-brew-clearlinux@1856b9f9d8340774f4a77171bac9e1476fc0b8c1
+latest: git://github.com/clearlinux/docker-brew-clearlinux@e44dea8fea6cf1b6e8633fa402a33b239f1dff5b
+base: git://github.com/clearlinux/docker-brew-clearlinux@e44dea8fea6cf1b6e8633fa402a33b239f1dff5b

+ 5 - 5
library/clojure

@@ -2,19 +2,19 @@ Maintainers: Paul Lam <[email protected]> (@Quantisan),
              Wes Morgan <[email protected]> (@cap10morgan)
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
 GitRepo: https://github.com/Quantisan/docker-clojure.git
-GitCommit: 54d3dcd9756fb53c489eb9cb8debd80a1a5f6430
+GitCommit: b4e548bbaab978eaa8e0f4b31705c43526202d3c
 
-Tags: lein-2.7.1, lein, latest
+Tags: lein-2.8.1, lein, latest
 Directory: debian/lein
 
-Tags: lein-2.7.1-onbuild, lein-onbuild, onbuild
+Tags: lein-2.8.1-onbuild, lein-onbuild, onbuild
 Directory: debian/lein/onbuild
 
-Tags: lein-2.7.1-alpine, lein-alpine, alpine
+Tags: lein-2.8.1-alpine, lein-alpine, alpine
 Architectures: amd64
 Directory: alpine/lein
 
-Tags: lein-2.7.1-alpine-onbuild, lein-alpine-onbuild, alpine-onbuild
+Tags: lein-2.8.1-alpine-onbuild, lein-alpine-onbuild, alpine-onbuild
 Architectures: amd64
 Directory: alpine/lein/onbuild
 

+ 2 - 2
library/consul

@@ -1,4 +1,4 @@
 # maintainer: James Phillips <[email protected]> (@slackpad)
 
-latest: git://github.com/hashicorp/docker-consul@20ea5d641cf0c7e61e695f373b648a45a3ebe151 0.X
-0.9.3: git://github.com/hashicorp/docker-consul@20ea5d641cf0c7e61e695f373b648a45a3ebe151 0.X
+1.0.0: git://github.com/hashicorp/docker-consul@9fb940c32b6f46b0a77a640d7161054e00e97bbb 0.X
+latest: git://github.com/hashicorp/docker-consul@9fb940c32b6f46b0a77a640d7161054e00e97bbb 0.X

+ 9 - 10
library/couchbase

@@ -1,15 +1,14 @@
 # maintainer: Couchbase Docker Team <[email protected]> (@couchbase)
 
-latest: git://github.com/couchbase/docker@abdfa74c6281d57974b356731a60b5fa68e14f9f enterprise/couchbase-server/4.6.3
-enterprise: git://github.com/couchbase/docker@abdfa74c6281d57974b356731a60b5fa68e14f9f enterprise/couchbase-server/4.6.3
-4.6.3: git://github.com/couchbase/docker@abdfa74c6281d57974b356731a60b5fa68e14f9f enterprise/couchbase-server/4.6.3
-enterprise-4.6.3: git://github.com/couchbase/docker@abdfa74c6281d57974b356731a60b5fa68e14f9f enterprise/couchbase-server/4.6.3
+latest: git://github.com/couchbase/docker@521055d5a670dc84811a137b8ad687a36e3333d5 enterprise/couchbase-server/5.0.0
+enterprise: git://github.com/couchbase/docker@521055d5a670dc84811a137b8ad687a36e3333d5 enterprise/couchbase-server/5.0.0
+5.0.0: git://github.com/couchbase/docker@521055d5a670dc84811a137b8ad687a36e3333d5 enterprise/couchbase-server/5.0.0
+enterprise-5.0.0: git://github.com/couchbase/docker@521055d5a670dc84811a137b8ad687a36e3333d5 enterprise/couchbase-server/5.0.0
 
-community: git://github.com/couchbase/docker@abdfa74c6281d57974b356731a60b5fa68e14f9f community/couchbase-server/4.5.1
-community-4.5.1: git://github.com/couchbase/docker@abdfa74c6281d57974b356731a60b5fa68e14f9f community/couchbase-server/4.5.1
+4.6.3: git://github.com/couchbase/docker@521055d5a670dc84811a137b8ad687a36e3333d5 enterprise/couchbase-server/4.6.3
+enterprise-4.6.3: git://github.com/couchbase/docker@521055d5a670dc84811a137b8ad687a36e3333d5 enterprise/couchbase-server/4.6.3
 
-3.1.6: git://github.com/couchbase/docker@abdfa74c6281d57974b356731a60b5fa68e14f9f enterprise/couchbase-server/3.1.6
-enterprise-3.1.6: git://github.com/couchbase/docker@abdfa74c6281d57974b356731a60b5fa68e14f9f enterprise/couchbase-server/3.1.6
-
-community-3.1.3: git://github.com/couchbase/docker@abdfa74c6281d57974b356731a60b5fa68e14f9f community/couchbase-server/3.1.3
+community: git://github.com/couchbase/docker@521055d5a670dc84811a137b8ad687a36e3333d5 community/couchbase-server/5.0.0
+community-5.0.0: git://github.com/couchbase/docker@521055d5a670dc84811a137b8ad687a36e3333d5 community/couchbase-server/5.0.0
 
+community-4.5.1: git://github.com/couchbase/docker@521055d5a670dc84811a137b8ad687a36e3333d5 community/couchbase-server/4.5.1

+ 12 - 8
library/couchdb

@@ -1,10 +1,14 @@
-# maintainer: Clemens Stolle <[email protected]> (@klaemo)
+# maintainer: Joan Touzet <[email protected]> (@wohali)
 
-latest: git://github.com/klaemo/docker-couchdb@29ed69965ed616a9d0df9a6ffa081773d86c78bc 1.6.1
-1.6.1: git://github.com/klaemo/docker-couchdb@29ed69965ed616a9d0df9a6ffa081773d86c78bc 1.6.1
-1.6: git://github.com/klaemo/docker-couchdb@29ed69965ed616a9d0df9a6ffa081773d86c78bc 1.6.1
-1: git://github.com/klaemo/docker-couchdb@29ed69965ed616a9d0df9a6ffa081773d86c78bc 1.6.1
+latest: git://github.com/apache/couchdb-docker@1a7c4254c158a194ff195da6ebfed910d24a95b7 2.1.1
+2.1.1: git://github.com/apache/couchdb-docker@1a7c4254c158a194ff195da6ebfed910d24a95b7 2.1.1
+2.1: git://github.com/apache/couchdb-docker@1a7c4254c158a194ff195da6ebfed910d24a95b7 2.1.1
+2: git://github.com/apache/couchdb-docker@1a7c4254c158a194ff195da6ebfed910d24a95b7 2.1.1
 
-1.6.1-couchperuser: git://github.com/klaemo/docker-couchdb@29ed69965ed616a9d0df9a6ffa081773d86c78bc 1.6.1-couchperuser
-1.6-couchperuser: git://github.com/klaemo/docker-couchdb@29ed69965ed616a9d0df9a6ffa081773d86c78bc 1.6.1-couchperuser
-1-couchperuser: git://github.com/klaemo/docker-couchdb@29ed69965ed616a9d0df9a6ffa081773d86c78bc 1.6.1-couchperuser
+1.7.1: git://github.com/apache/couchdb-docker@029760550b8af66f49bf439ddbabfbd040e9727c 1.7.1
+1.7: git://github.com/apache/couchdb-docker@029760550b8af66f49bf439ddbabfbd040e9727c 1.7.1
+1: git://github.com/apache/couchdb-docker@029760550b8af66f49bf439ddbabfbd040e9727c 1.7.1
+
+1.7.1-couchperuser: git://github.com/apache/couchdb-docker@029760550b8af66f49bf439ddbabfbd040e9727c 1.7.1-couchperuser
+1.7-couchperuser: git://github.com/apache/couchdb-docker@029760550b8af66f49bf439ddbabfbd040e9727c 1.7.1-couchperuser
+1-couchperuser: git://github.com/apache/couchdb-docker@029760550b8af66f49bf439ddbabfbd040e9727c 1.7.1-couchperuser

+ 2 - 2
library/crate

@@ -9,8 +9,8 @@ Maintainers: Bernd Dorn <[email protected]> (@dobe),
              Mika Naylor <[email protected]> (@autophagy)
 GitRepo: https://github.com/crate/docker-crate.git
 
-Tags: 2.1.7, 2.1, latest
-GitCommit: 1c775563b01e830f265f0210ce8a68c81903c8cc
+Tags: 2.1.8, 2.1, latest
+GitCommit: 49b66b0f14f1285a3165fc6937ac72b165af7990
 
 Tags: 2.0.7, 2.0
 GitCommit: 79d51bb263104ccd2d3c57a5d74c16d6f0466d21

+ 21 - 21
library/debian

@@ -7,28 +7,28 @@ GitRepo: https://github.com/debuerreotype/docker-debian-artifacts.git
 GitCommit: fa5e408fa2e9a74c025f21cbfa2449ea349afd26
 # https://github.com/debuerreotype/docker-debian-artifacts/tree/dist-amd64
 amd64-GitFetch: refs/heads/dist-amd64
-amd64-GitCommit: 97dc072ae1e6c66c1ccc71ead334ce5d5fc201f0
+amd64-GitCommit: de09dd55b6328b37b89a33e76b698f9dbe611fab
 # https://github.com/debuerreotype/docker-debian-artifacts/tree/dist-arm32v5
 arm32v5-GitFetch: refs/heads/dist-arm32v5
-arm32v5-GitCommit: 38d2cf181e221d0a6f711141f12f8c736c6b3a42
+arm32v5-GitCommit: 820ba75e469d4ed07aa22c925493d5e4d15bbe54
 # https://github.com/debuerreotype/docker-debian-artifacts/tree/dist-arm32v7
 arm32v7-GitFetch: refs/heads/dist-arm32v7
-arm32v7-GitCommit: f2d531efa61c7a75a8d913716941d60177721359
+arm32v7-GitCommit: 4c387af2dc9896af594ce9d7c2f1bb975488fc8b
 # https://github.com/debuerreotype/docker-debian-artifacts/tree/dist-arm64v8
 arm64v8-GitFetch: refs/heads/dist-arm64v8
-arm64v8-GitCommit: b8bcc93c8255874ce3235a4fa325af3b17036cb8
+arm64v8-GitCommit: bb7f74788fe24edc9f2b85133d601810a141b6f9
 # https://github.com/debuerreotype/docker-debian-artifacts/tree/dist-i386
 i386-GitFetch: refs/heads/dist-i386
-i386-GitCommit: e2e165b29d40fc2fa39ecbe78839ff0142caa4ec
+i386-GitCommit: 2d0c94d8151b53bf8263ae268417f99bd7426721
 # https://github.com/debuerreotype/docker-debian-artifacts/tree/dist-ppc64le
 ppc64le-GitFetch: refs/heads/dist-ppc64le
-ppc64le-GitCommit: 4b4b334892988ce15172094b740911b81de851e9
+ppc64le-GitCommit: 5400c04d7b28e30b3d265c79c5f91e17ac59367b
 # https://github.com/debuerreotype/docker-debian-artifacts/tree/dist-s390x
 s390x-GitFetch: refs/heads/dist-s390x
-s390x-GitCommit: 4f46f250ac27924935c2a5db431cbef2f00714dd
+s390x-GitCommit: 517507bd5c71cff0c609942acd82bbb3f9de687f
 
 # buster -- Debian x.y Testing distribution - Not Released
-Tags: buster, buster-20170907
+Tags: buster, buster-20171009
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
 Directory: buster
 
@@ -37,12 +37,12 @@ Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
 Directory: buster/slim
 
 # experimental -- Experimental packages - not released; use at your own risk.
-Tags: experimental, experimental-20170907
+Tags: experimental, experimental-20171009
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
 Directory: experimental
 
 # jessie -- Debian 8.9 Released 22 July 2017
-Tags: jessie, jessie-20170907, 8.9, 8
+Tags: jessie, jessie-20171009, 8.9, 8
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
 Directory: jessie
 
@@ -55,7 +55,7 @@ Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
 Directory: jessie/slim
 
 # oldoldstable -- Debian 7.11 Released 04 June 2016
-Tags: oldoldstable, oldoldstable-20170907
+Tags: oldoldstable, oldoldstable-20171009
 Architectures: amd64, arm32v5, arm32v7, i386
 Directory: oldoldstable
 
@@ -68,7 +68,7 @@ Architectures: amd64, arm32v5, arm32v7, i386
 Directory: oldoldstable/slim
 
 # oldstable -- Debian 8.9 Released 22 July 2017
-Tags: oldstable, oldstable-20170907
+Tags: oldstable, oldstable-20171009
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
 Directory: oldstable
 
@@ -81,12 +81,12 @@ Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
 Directory: oldstable/slim
 
 # rc-buggy -- Experimental packages - not released; use at your own risk.
-Tags: rc-buggy, rc-buggy-20170907
+Tags: rc-buggy, rc-buggy-20171009
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
 Directory: rc-buggy
 
 # sid -- Debian x.y Unstable - Not Released
-Tags: sid, sid-20170907
+Tags: sid, sid-20171009
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
 Directory: sid
 
@@ -94,8 +94,8 @@ Tags: sid-slim
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
 Directory: sid/slim
 
-# stable -- Debian 9.1 Released 22 July 2017
-Tags: stable, stable-20170907
+# stable -- Debian 9.2 Released 07 October 2017
+Tags: stable, stable-20171009
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
 Directory: stable
 
@@ -107,8 +107,8 @@ Tags: stable-slim
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
 Directory: stable/slim
 
-# stretch -- Debian 9.1 Released 22 July 2017
-Tags: stretch, stretch-20170907, 9.1, 9, latest
+# stretch -- Debian 9.2 Released 07 October 2017
+Tags: stretch, stretch-20171009, 9.2, 9, latest
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
 Directory: stretch
 
@@ -121,7 +121,7 @@ Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
 Directory: stretch/slim
 
 # testing -- Debian x.y Testing distribution - Not Released
-Tags: testing, testing-20170907
+Tags: testing, testing-20171009
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
 Directory: testing
 
@@ -130,7 +130,7 @@ Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
 Directory: testing/slim
 
 # unstable -- Debian x.y Unstable - Not Released
-Tags: unstable, unstable-20170907
+Tags: unstable, unstable-20171009
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
 Directory: unstable
 
@@ -139,7 +139,7 @@ Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
 Directory: unstable/slim
 
 # wheezy -- Debian 7.11 Released 04 June 2016
-Tags: wheezy, wheezy-20170907, 7.11, 7
+Tags: wheezy, wheezy-20171009, 7.11, 7
 Architectures: amd64, arm32v5, arm32v7, i386
 Directory: wheezy
 

+ 52 - 49
library/docker

@@ -1,65 +1,68 @@
-# this file is generated via https://github.com/docker-library/docker/blob/a6b52c73daa8283cd861f41f55e53426008708ac/generate-stackbrew-library.sh
+# this file is generated via https://github.com/docker-library/docker/blob/bca413739d33629db28b0ef6f51a7468451b8654/generate-stackbrew-library.sh
 
 Maintainers: Tianon Gravi <[email protected]> (@tianon),
              Joseph Ferguson <[email protected]> (@yosifkit)
 GitRepo: https://github.com/docker-library/docker.git
 
-Tags: 17.10.0-ce-rc1, 17.10-rc, rc
-Architectures: amd64
-GitCommit: 8ada62f762b30d09fd54664710c0ef3b64038f07
-Directory: 17.10-rc
+Tags: 17.11.0-ce-rc3, 17.11-rc, rc, test
+Architectures: amd64, arm64v8, ppc64le, s390x
+GitCommit: 4e1f14f433ef9b800a19fe1907a54b09d8f42a15
+Directory: 17.11-rc
 
-Tags: 17.10.0-ce-rc1-dind, 17.10-rc-dind, rc-dind
-Architectures: amd64
-GitCommit: 8ada62f762b30d09fd54664710c0ef3b64038f07
-Directory: 17.10-rc/dind
+Tags: 17.11.0-ce-rc3-dind, 17.11-rc-dind, rc-dind, test-dind
+Architectures: amd64, arm64v8, ppc64le, s390x
+GitCommit: 6e7677bec19c214ef5445c0d2b96c56e42098ca1
+Directory: 17.11-rc/dind
 
-Tags: 17.10.0-ce-rc1-git, 17.10-rc-git, rc-git
-Architectures: amd64
-GitCommit: 8ada62f762b30d09fd54664710c0ef3b64038f07
-Directory: 17.10-rc/git
+Tags: 17.11.0-ce-rc3-git, 17.11-rc-git, rc-git, test-git
+Architectures: amd64, arm64v8, ppc64le, s390x
+GitCommit: 6e7677bec19c214ef5445c0d2b96c56e42098ca1
+Directory: 17.11-rc/git
 
-Tags: 17.09.0-ce, 17.09.0, 17.09, 17, stable, test, edge, latest
-Architectures: amd64
-GitCommit: a6b52c73daa8283cd861f41f55e53426008708ac
-Directory: 17.09
+Tags: 17.11.0-ce-rc3-windowsservercore, 17.11-rc-windowsservercore, rc-windowsservercore, test-windowsservercore
+Architectures: windows-amd64
+GitCommit: 4e1f14f433ef9b800a19fe1907a54b09d8f42a15
+Directory: 17.11-rc/windows/windowsservercore
+Constraints: windowsservercore
 
-Tags: 17.09.0-ce-dind, 17.09.0-dind, 17.09-dind, 17-dind, stable-dind, test-dind, edge-dind, dind
-Architectures: amd64
-GitCommit: a6b52c73daa8283cd861f41f55e53426008708ac
-Directory: 17.09/dind
+Tags: 17.10.0-ce, 17.10.0, 17.10, 17, edge, latest
+Architectures: amd64, arm64v8, ppc64le, s390x
+GitCommit: af5b6cd45b8d1aeb534589d99f92b5a4dc886f5d
+Directory: 17.10
 
-Tags: 17.09.0-ce-git, 17.09.0-git, 17.09-git, 17-git, stable-git, test-git, edge-git, git
-Architectures: amd64
-GitCommit: a6b52c73daa8283cd861f41f55e53426008708ac
-Directory: 17.09/git
+Tags: 17.10.0-ce-dind, 17.10.0-dind, 17.10-dind, 17-dind, edge-dind, dind
+Architectures: amd64, arm64v8, ppc64le, s390x
+GitCommit: 00de5231b507c989ce900df2ef3f1abf4ce7e19c
+Directory: 17.10/dind
 
-Tags: 17.07.0-ce, 17.07.0, 17.07
-Architectures: amd64
-GitCommit: a8f8fa1b57349cc22c80e7d6cbbdb512ffee2bd2
-Directory: 17.07
+Tags: 17.10.0-ce-git, 17.10.0-git, 17.10-git, 17-git, edge-git, git
+Architectures: amd64, arm64v8, ppc64le, s390x
+GitCommit: 62a456489acfe7443d426cd502ccf22130d1ccf9
+Directory: 17.10/git
 
-Tags: 17.07.0-ce-dind, 17.07.0-dind, 17.07-dind
-Architectures: amd64
-GitCommit: a8f8fa1b57349cc22c80e7d6cbbdb512ffee2bd2
-Directory: 17.07/dind
+Tags: 17.10.0-ce-windowsservercore, 17.10.0-windowsservercore, 17.10-windowsservercore, 17-windowsservercore, edge-windowsservercore, windowsservercore
+Architectures: windows-amd64
+GitCommit: 62a456489acfe7443d426cd502ccf22130d1ccf9
+Directory: 17.10/windows/windowsservercore
+Constraints: windowsservercore
 
-Tags: 17.07.0-ce-git, 17.07.0-git, 17.07-git
-Architectures: amd64
-GitCommit: a8f8fa1b57349cc22c80e7d6cbbdb512ffee2bd2
-Directory: 17.07/git
+Tags: 17.09.0-ce, 17.09.0, 17.09, stable
+Architectures: amd64, arm64v8, ppc64le, s390x
+GitCommit: af5b6cd45b8d1aeb534589d99f92b5a4dc886f5d
+Directory: 17.09
 
-Tags: 17.06.2-ce, 17.06.2, 17.06
-Architectures: amd64
-GitCommit: 168a6d227d021c6d38c3986b7c668702ec172fa7
-Directory: 17.06
+Tags: 17.09.0-ce-dind, 17.09.0-dind, 17.09-dind, stable-dind
+Architectures: amd64, arm64v8, ppc64le, s390x
+GitCommit: 00de5231b507c989ce900df2ef3f1abf4ce7e19c
+Directory: 17.09/dind
 
-Tags: 17.06.2-ce-dind, 17.06.2-dind, 17.06-dind
-Architectures: amd64
-GitCommit: 168a6d227d021c6d38c3986b7c668702ec172fa7
-Directory: 17.06/dind
+Tags: 17.09.0-ce-git, 17.09.0-git, 17.09-git, stable-git
+Architectures: amd64, arm64v8, ppc64le, s390x
+GitCommit: a6b52c73daa8283cd861f41f55e53426008708ac
+Directory: 17.09/git
 
-Tags: 17.06.2-ce-git, 17.06.2-git, 17.06-git
-Architectures: amd64
-GitCommit: 168a6d227d021c6d38c3986b7c668702ec172fa7
-Directory: 17.06/git
+Tags: 17.09.0-ce-windowsservercore, 17.09.0-windowsservercore, 17.09-windowsservercore, stable-windowsservercore
+Architectures: windows-amd64
+GitCommit: 2f6926c4fb37274b90fae3ba6c3320619a8d0289
+Directory: 17.09/windows/windowsservercore
+Constraints: windowsservercore

+ 6 - 6
library/drupal

@@ -4,19 +4,19 @@ Maintainers: Tianon Gravi <[email protected]> (@tianon),
              Joseph Ferguson <[email protected]> (@yosifkit)
 GitRepo: https://github.com/docker-library/drupal.git
 
-Tags: 8.4.0-apache, 8.4-apache, 8-apache, apache, 8.4.0, 8.4, 8, latest
+Tags: 8.4.2-apache, 8.4-apache, 8-apache, apache, 8.4.2, 8.4, 8, latest
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 4adc72d34dc250cde5329dff32989b5aa8090324
+GitCommit: 2de47f70667e6c3c710b8307ddc4e7a371ef440f
 Directory: 8.4/apache
 
-Tags: 8.4.0-fpm, 8.4-fpm, 8-fpm, fpm
+Tags: 8.4.2-fpm, 8.4-fpm, 8-fpm, fpm
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 4adc72d34dc250cde5329dff32989b5aa8090324
+GitCommit: 2de47f70667e6c3c710b8307ddc4e7a371ef440f
 Directory: 8.4/fpm
 
-Tags: 8.4.0-fpm-alpine, 8.4-fpm-alpine, 8-fpm-alpine, fpm-alpine
+Tags: 8.4.2-fpm-alpine, 8.4-fpm-alpine, 8-fpm-alpine, fpm-alpine
 Architectures: amd64
-GitCommit: 4adc72d34dc250cde5329dff32989b5aa8090324
+GitCommit: 2de47f70667e6c3c710b8307ddc4e7a371ef440f
 Directory: 8.4/fpm-alpine
 
 Tags: 8.3.7-apache, 8.3-apache, 8.3.7, 8.3

+ 1 - 1
library/eggdrop

@@ -2,7 +2,7 @@ Maintainers: Geo Van O <[email protected]> (@vanosg)
 GitRepo: https://github.com/eggheads/eggdrop-docker.git
 
 Tags: develop
-GitCommit: e50da857a808ea6593fc4bfd56997d92a0461193
+GitCommit: 0fb8601ed7e6965599e13a1b6fc3e9265cef953f
 Directory: develop
 
 Tags: 1.8, 1.8.2, stable, latest

+ 21 - 0
library/elasticsearch

@@ -0,0 +1,21 @@
+# this file is generated via https://github.com/docker-library/elasticsearch/blob/47a72b6f1962df04a62616b1c3c32e85b5410639/generate-stackbrew-library.sh
+
+Maintainers: Tianon Gravi <[email protected]> (@tianon),
+             Joseph Ferguson <[email protected]> (@yosifkit)
+GitRepo: https://github.com/docker-library/elasticsearch.git
+
+Tags: 5.6.4, 5.6, 5, latest
+GitCommit: 0e42c8b41dbbbf4158f03f2af61812729c52662b
+Directory: 5
+
+Tags: 5.6.4-alpine, 5.6-alpine, 5-alpine, alpine
+GitCommit: 0e42c8b41dbbbf4158f03f2af61812729c52662b
+Directory: 5/alpine
+
+Tags: 2.4.6, 2.4, 2
+GitCommit: 8e87587ac5d6b44a8382a229162c88e65618c30a
+Directory: 2.4
+
+Tags: 2.4.6-alpine, 2.4-alpine, 2-alpine
+GitCommit: 8e87587ac5d6b44a8382a229162c88e65618c30a
+Directory: 2.4/alpine

+ 6 - 6
library/erlang

@@ -3,19 +3,19 @@
 Maintainers: Mr C0B <[email protected]> (@c0b)
 GitRepo: https://github.com/c0b/docker-erlang-otp.git
 
-Tags: 20.1.1, 20.1, 20, latest
+Tags: 20.1.5, 20.1, 20, latest
 Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
-GitCommit: 8a77b857d423a79e43e9daddddcbf3cd1ed4dbcc
+GitCommit: 1b5d14663cffa24c255eb19902f6bc3b7f546b49
 Directory: 20
 
-Tags: 20.1.1-slim, 20.1-slim, 20-slim, slim
+Tags: 20.1.5-slim, 20.1-slim, 20-slim, slim
 Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
-GitCommit: 8a77b857d423a79e43e9daddddcbf3cd1ed4dbcc
+GitCommit: 1b5d14663cffa24c255eb19902f6bc3b7f546b49
 Directory: 20/slim
 
-Tags: 20.1.1-alpine, 20.1-alpine, 20-alpine, alpine
+Tags: 20.1.5-alpine, 20.1-alpine, 20-alpine, alpine
 Architectures: amd64
-GitCommit: 8a77b857d423a79e43e9daddddcbf3cd1ed4dbcc
+GitCommit: 1b5d14663cffa24c255eb19902f6bc3b7f546b49
 Directory: 20/alpine
 
 Tags: 19.3.6.3, 19.3.6, 19.3, 19

+ 7 - 0
library/euleros

@@ -0,0 +1,7 @@
+Maintainers: Li Ruilin <[email protected]> (@Kazero0)
+GitRepo: https://github.com/euleros/euleros-docker-images.git
+GitFetch: refs/heads/master
+GitCommit: e1e5020fe9fd5030c9e5d34d5e86a74b379eff36
+
+Tags: 2.2, latest
+Directory: 2.2

+ 13 - 4
library/fedora

@@ -3,16 +3,25 @@ Maintainers: Adam Miller <[email protected]> (@maxamillion),
 GitRepo: https://github.com/fedora-cloud/docker-brew-fedora.git
 Constraints: !aufs
 
-Tags: latest, 26
+Tags: latest, 27
+Architectures: amd64, arm32v7, arm64v8, ppc64le
+GitFetch: refs/heads/27
+GitCommit: f429bf1590cc45d9912c5a7f75e85ceba8057798
+amd64-Directory: x86_64/
+arm32v7-Directory: armhfp/
+arm64v8-Directory: aarch64/
+ppc64le-Directory: ppc64le/
+
+Tags: 26
 Architectures: amd64, arm32v7, arm64v8, ppc64le
 GitFetch: refs/heads/26
-GitCommit: 065231a8dbc04882df54afdd749be16931aecd5a
+GitCommit: 5433f211a72f52b360751a63e3155d8fd12ab828
 amd64-Directory: x86_64/
 arm32v7-Directory: armhfp/
 arm64v8-Directory: aarch64/
 ppc64le-Directory: ppc64le/
 
-Tags: 26-modular
+Tags: modular, 26-modular
 Architectures: amd64
 GitFetch: refs/heads/26-modular
 GitCommit: d5dd6eb44f0651788edb6f81a5537c09b07022c4
@@ -28,7 +37,7 @@ arm32v7-Directory: armhfp/
 Tags: rawhide
 Architectures: amd64, arm32v7, arm64v8, ppc64le
 GitFetch: refs/heads/rawhide
-GitCommit: 3a5e26b6df79c1c649d231cd745d9360ee308041
+GitCommit: 47465fa682b33cea69102229b7e895151a408b8f
 amd64-Directory: x86_64/
 arm32v7-Directory: armhfp/
 arm64v8-Directory: aarch64/

+ 80 - 16
library/flink

@@ -5,65 +5,129 @@ Maintainers: Patrick Lucas <[email protected]> (@patricklucas),
 GitRepo: https://github.com/docker-flink/docker-flink.git
 
 Tags: 1.2.1-hadoop2-scala_2.10
-GitCommit: 38f86f24c029a524a01db7dd273e991c69b3c9f2
+GitCommit: f4b62d9ab129bf6765b80e8079dc9aaf91fdd54f
 Directory: 1.2/hadoop2-scala_2.10-debian
 
 Tags: 1.2.1-hadoop2-scala_2.11, 1.2.1-hadoop2, 1.2-hadoop2
-GitCommit: 38f86f24c029a524a01db7dd273e991c69b3c9f2
+GitCommit: f4b62d9ab129bf6765b80e8079dc9aaf91fdd54f
 Directory: 1.2/hadoop2-scala_2.11-debian
 
 Tags: 1.2.1-hadoop24-scala_2.10
-GitCommit: 38f86f24c029a524a01db7dd273e991c69b3c9f2
+GitCommit: f4b62d9ab129bf6765b80e8079dc9aaf91fdd54f
 Directory: 1.2/hadoop24-scala_2.10-debian
 
 Tags: 1.2.1-hadoop24-scala_2.11, 1.2.1-hadoop24, 1.2-hadoop24
-GitCommit: 38f86f24c029a524a01db7dd273e991c69b3c9f2
+GitCommit: f4b62d9ab129bf6765b80e8079dc9aaf91fdd54f
 Directory: 1.2/hadoop24-scala_2.11-debian
 
 Tags: 1.2.1-hadoop26-scala_2.10
-GitCommit: 38f86f24c029a524a01db7dd273e991c69b3c9f2
+GitCommit: f4b62d9ab129bf6765b80e8079dc9aaf91fdd54f
 Directory: 1.2/hadoop26-scala_2.10-debian
 
 Tags: 1.2.1-hadoop26-scala_2.11, 1.2.1-hadoop26, 1.2-hadoop26
-GitCommit: 38f86f24c029a524a01db7dd273e991c69b3c9f2
+GitCommit: f4b62d9ab129bf6765b80e8079dc9aaf91fdd54f
 Directory: 1.2/hadoop26-scala_2.11-debian
 
 Tags: 1.2.1-hadoop27-scala_2.10, 1.2.1-scala_2.10, 1.2-scala_2.10
-GitCommit: 38f86f24c029a524a01db7dd273e991c69b3c9f2
+GitCommit: f4b62d9ab129bf6765b80e8079dc9aaf91fdd54f
 Directory: 1.2/hadoop27-scala_2.10-debian
 
 Tags: 1.2.1-hadoop27-scala_2.11, 1.2.1-scala_2.11, 1.2-scala_2.11, 1.2.1-hadoop27, 1.2-hadoop27, 1.2.1, 1.2
-GitCommit: 38f86f24c029a524a01db7dd273e991c69b3c9f2
+GitCommit: f4b62d9ab129bf6765b80e8079dc9aaf91fdd54f
 Directory: 1.2/hadoop27-scala_2.11-debian
 
+Tags: 1.2.1-hadoop2-scala_2.10-alpine
+GitCommit: f4b62d9ab129bf6765b80e8079dc9aaf91fdd54f
+Directory: 1.2/hadoop2-scala_2.10-alpine
+
+Tags: 1.2.1-hadoop2-scala_2.11-alpine, 1.2.1-hadoop2-alpine, 1.2-hadoop2-alpine
+GitCommit: f4b62d9ab129bf6765b80e8079dc9aaf91fdd54f
+Directory: 1.2/hadoop2-scala_2.11-alpine
+
+Tags: 1.2.1-hadoop24-scala_2.10-alpine
+GitCommit: f4b62d9ab129bf6765b80e8079dc9aaf91fdd54f
+Directory: 1.2/hadoop24-scala_2.10-alpine
+
+Tags: 1.2.1-hadoop24-scala_2.11-alpine, 1.2.1-hadoop24-alpine, 1.2-hadoop24-alpine
+GitCommit: f4b62d9ab129bf6765b80e8079dc9aaf91fdd54f
+Directory: 1.2/hadoop24-scala_2.11-alpine
+
+Tags: 1.2.1-hadoop26-scala_2.10-alpine
+GitCommit: f4b62d9ab129bf6765b80e8079dc9aaf91fdd54f
+Directory: 1.2/hadoop26-scala_2.10-alpine
+
+Tags: 1.2.1-hadoop26-scala_2.11-alpine, 1.2.1-hadoop26-alpine, 1.2-hadoop26-alpine
+GitCommit: f4b62d9ab129bf6765b80e8079dc9aaf91fdd54f
+Directory: 1.2/hadoop26-scala_2.11-alpine
+
+Tags: 1.2.1-hadoop27-scala_2.10-alpine, 1.2.1-scala_2.10-alpine, 1.2-scala_2.10-alpine
+GitCommit: f4b62d9ab129bf6765b80e8079dc9aaf91fdd54f
+Directory: 1.2/hadoop27-scala_2.10-alpine
+
+Tags: 1.2.1-hadoop27-scala_2.11-alpine, 1.2.1-scala_2.11-alpine, 1.2-scala_2.11-alpine, 1.2.1-hadoop27-alpine, 1.2-hadoop27-alpine, 1.2.1-alpine, 1.2-alpine
+GitCommit: f4b62d9ab129bf6765b80e8079dc9aaf91fdd54f
+Directory: 1.2/hadoop27-scala_2.11-alpine
+
 Tags: 1.3.2-hadoop2-scala_2.10
-GitCommit: c7d0506a96369512563ffb6c0afc8dba09430845
+GitCommit: f4b62d9ab129bf6765b80e8079dc9aaf91fdd54f
 Directory: 1.3/hadoop2-scala_2.10-debian
 
 Tags: 1.3.2-hadoop2-scala_2.11, 1.3.2-hadoop2, 1.3-hadoop2, hadoop2
-GitCommit: c7d0506a96369512563ffb6c0afc8dba09430845
+GitCommit: f4b62d9ab129bf6765b80e8079dc9aaf91fdd54f
 Directory: 1.3/hadoop2-scala_2.11-debian
 
 Tags: 1.3.2-hadoop24-scala_2.10
-GitCommit: c7d0506a96369512563ffb6c0afc8dba09430845
+GitCommit: f4b62d9ab129bf6765b80e8079dc9aaf91fdd54f
 Directory: 1.3/hadoop24-scala_2.10-debian
 
 Tags: 1.3.2-hadoop24-scala_2.11, 1.3.2-hadoop24, 1.3-hadoop24, hadoop24
-GitCommit: c7d0506a96369512563ffb6c0afc8dba09430845
+GitCommit: f4b62d9ab129bf6765b80e8079dc9aaf91fdd54f
 Directory: 1.3/hadoop24-scala_2.11-debian
 
 Tags: 1.3.2-hadoop26-scala_2.10
-GitCommit: c7d0506a96369512563ffb6c0afc8dba09430845
+GitCommit: f4b62d9ab129bf6765b80e8079dc9aaf91fdd54f
 Directory: 1.3/hadoop26-scala_2.10-debian
 
 Tags: 1.3.2-hadoop26-scala_2.11, 1.3.2-hadoop26, 1.3-hadoop26, hadoop26
-GitCommit: c7d0506a96369512563ffb6c0afc8dba09430845
+GitCommit: f4b62d9ab129bf6765b80e8079dc9aaf91fdd54f
 Directory: 1.3/hadoop26-scala_2.11-debian
 
 Tags: 1.3.2-hadoop27-scala_2.10, 1.3.2-scala_2.10, 1.3-scala_2.10, scala_2.10
-GitCommit: c7d0506a96369512563ffb6c0afc8dba09430845
+GitCommit: f4b62d9ab129bf6765b80e8079dc9aaf91fdd54f
 Directory: 1.3/hadoop27-scala_2.10-debian
 
 Tags: 1.3.2-hadoop27-scala_2.11, 1.3.2-scala_2.11, 1.3-scala_2.11, scala_2.11, 1.3.2-hadoop27, 1.3-hadoop27, hadoop27, 1.3.2, 1.3, latest
-GitCommit: c7d0506a96369512563ffb6c0afc8dba09430845
+GitCommit: f4b62d9ab129bf6765b80e8079dc9aaf91fdd54f
 Directory: 1.3/hadoop27-scala_2.11-debian
+
+Tags: 1.3.2-hadoop2-scala_2.10-alpine
+GitCommit: f4b62d9ab129bf6765b80e8079dc9aaf91fdd54f
+Directory: 1.3/hadoop2-scala_2.10-alpine
+
+Tags: 1.3.2-hadoop2-scala_2.11-alpine, 1.3.2-hadoop2-alpine, 1.3-hadoop2-alpine, hadoop2-alpine
+GitCommit: f4b62d9ab129bf6765b80e8079dc9aaf91fdd54f
+Directory: 1.3/hadoop2-scala_2.11-alpine
+
+Tags: 1.3.2-hadoop24-scala_2.10-alpine
+GitCommit: f4b62d9ab129bf6765b80e8079dc9aaf91fdd54f
+Directory: 1.3/hadoop24-scala_2.10-alpine
+
+Tags: 1.3.2-hadoop24-scala_2.11-alpine, 1.3.2-hadoop24-alpine, 1.3-hadoop24-alpine, hadoop24-alpine
+GitCommit: f4b62d9ab129bf6765b80e8079dc9aaf91fdd54f
+Directory: 1.3/hadoop24-scala_2.11-alpine
+
+Tags: 1.3.2-hadoop26-scala_2.10-alpine
+GitCommit: f4b62d9ab129bf6765b80e8079dc9aaf91fdd54f
+Directory: 1.3/hadoop26-scala_2.10-alpine
+
+Tags: 1.3.2-hadoop26-scala_2.11-alpine, 1.3.2-hadoop26-alpine, 1.3-hadoop26-alpine, hadoop26-alpine
+GitCommit: f4b62d9ab129bf6765b80e8079dc9aaf91fdd54f
+Directory: 1.3/hadoop26-scala_2.11-alpine
+
+Tags: 1.3.2-hadoop27-scala_2.10-alpine, 1.3.2-scala_2.10-alpine, 1.3-scala_2.10-alpine, scala_2.10-alpine
+GitCommit: f4b62d9ab129bf6765b80e8079dc9aaf91fdd54f
+Directory: 1.3/hadoop27-scala_2.10-alpine
+
+Tags: 1.3.2-hadoop27-scala_2.11-alpine, 1.3.2-scala_2.11-alpine, 1.3-scala_2.11-alpine, scala_2.11-alpine, 1.3.2-hadoop27-alpine, 1.3-hadoop27-alpine, hadoop27-alpine, 1.3.2-alpine, 1.3-alpine, alpine
+GitCommit: f4b62d9ab129bf6765b80e8079dc9aaf91fdd54f
+Directory: 1.3/hadoop27-scala_2.11-alpine

+ 3 - 3
library/fsharp

@@ -2,9 +2,9 @@ Maintainers: Dave Curylo <[email protected]> (@ninjarobot),
              Steve Desmond <[email protected]> (@stevedesmond-ca)
 GitRepo: https://github.com/fsprojects/docker-fsharp.git
 
-Tags: latest, 4, 4.1, 4.1.25
-GitCommit: 96cd7752113e7b4e32fbd6437600816f4b361994
-Directory: 4.1.25/mono
+Tags: latest, 4, 4.1, 4.1.28
+GitCommit: 58be3b5a99a5170b8277c60c77cf163ce66a733f
+Directory: 4.1.28/mono
 
 Tags: 4.1.18
 GitCommit: ad4c4d67a1975b2b0ff0acc49dc46b3271836831

+ 81 - 17
library/gazebo

@@ -1,22 +1,86 @@
-# maintainer: Nate Koenig <[email protected]> (@nkoenig)
+Maintainers: Tully Foote <[email protected]> (@tfoote)
+GitRepo: https://github.com/osrf/docker_images.git
 
-gzserver4:      git://github.com/osrf/docker_images@113c7241bac8ca94c238b1a5bf5ce71ee2a7f219 gazebo/gazebo4/gzserver4
-libgazebo4:     git://github.com/osrf/docker_images@113c7241bac8ca94c238b1a5bf5ce71ee2a7f219 gazebo/gazebo4/libgazebo4
-# Docker EOL: 2016-01-25
+################################################################################
+# Release: 4
 
-gzserver5:      git://github.com/osrf/docker_images@113c7241bac8ca94c238b1a5bf5ce71ee2a7f219 gazebo/gazebo5/gzserver5
-libgazebo5:     git://github.com/osrf/docker_images@113c7241bac8ca94c238b1a5bf5ce71ee2a7f219 gazebo/gazebo5/libgazebo5
-# Docker EOL: 2017-01-25
+########################################
+# Distro: ubuntu:trusty
 
-gzserver6:      git://github.com/osrf/docker_images@113c7241bac8ca94c238b1a5bf5ce71ee2a7f219 gazebo/gazebo6/gzserver6
-libgazebo6:     git://github.com/osrf/docker_images@113c7241bac8ca94c238b1a5bf5ce71ee2a7f219 gazebo/gazebo6/libgazebo6
-# Docker EOL: 2017-01-25
+Tags: gzserver4
+Architectures: amd64
+GitCommit: 1154349c9f81a11ce50d73fd2e07020f4eb7c0b9
+Directory: gazebo/4/ubuntu/trusty/gzserver4
 
-gzserver7:      git://github.com/osrf/docker_images@113c7241bac8ca94c238b1a5bf5ce71ee2a7f219 gazebo/gazebo7/gzserver7
-libgazebo7:     git://github.com/osrf/docker_images@113c7241bac8ca94c238b1a5bf5ce71ee2a7f219 gazebo/gazebo7/libgazebo7
-# Docker EOL: 2021-01-25
+Tags: libgazebo4
+Architectures: amd64
+GitCommit: 1154349c9f81a11ce50d73fd2e07020f4eb7c0b9
+Directory: gazebo/4/ubuntu/trusty/libgazebo4
 
-gzserver8:      git://github.com/osrf/docker_images@113c7241bac8ca94c238b1a5bf5ce71ee2a7f219 gazebo/gazebo8/gzserver8
-libgazebo8:     git://github.com/osrf/docker_images@113c7241bac8ca94c238b1a5bf5ce71ee2a7f219 gazebo/gazebo8/libgazebo8
-latest:         git://github.com/osrf/docker_images@113c7241bac8ca94c238b1a5bf5ce71ee2a7f219 gazebo/gazebo8/libgazebo8
-# Docker EOL: 2019-01-25
+
+################################################################################
+# Release: 5
+
+########################################
+# Distro: ubuntu:trusty
+
+Tags: gzserver5
+Architectures: amd64
+GitCommit: 1154349c9f81a11ce50d73fd2e07020f4eb7c0b9
+Directory: gazebo/5/ubuntu/trusty/gzserver5
+
+Tags: libgazebo5
+Architectures: amd64
+GitCommit: 1154349c9f81a11ce50d73fd2e07020f4eb7c0b9
+Directory: gazebo/5/ubuntu/trusty/libgazebo5
+
+
+################################################################################
+# Release: 6
+
+########################################
+# Distro: ubuntu:trusty
+
+Tags: gzserver6
+Architectures: amd64
+GitCommit: 1154349c9f81a11ce50d73fd2e07020f4eb7c0b9
+Directory: gazebo/6/ubuntu/trusty/gzserver6
+
+Tags: libgazebo6
+Architectures: amd64
+GitCommit: 1154349c9f81a11ce50d73fd2e07020f4eb7c0b9
+Directory: gazebo/6/ubuntu/trusty/libgazebo6
+
+
+################################################################################
+# Release: 7
+
+########################################
+# Distro: ubuntu:xenial
+
+Tags: gzserver7
+Architectures: amd64
+GitCommit: 72c476d68274d62762ffdd553bf57d8ae6a92d07
+Directory: gazebo/7/ubuntu/xenial/gzserver7
+
+Tags: libgazebo7
+Architectures: amd64
+GitCommit: 72c476d68274d62762ffdd553bf57d8ae6a92d07
+Directory: gazebo/7/ubuntu/xenial/libgazebo7
+
+
+################################################################################
+# Release: 8
+
+########################################
+# Distro: ubuntu:xenial
+
+Tags: gzserver8
+Architectures: amd64
+GitCommit: 1154349c9f81a11ce50d73fd2e07020f4eb7c0b9
+Directory: gazebo/8/ubuntu/xenial/gzserver8
+
+Tags: libgazebo8, latest
+Architectures: amd64
+GitCommit: 1154349c9f81a11ce50d73fd2e07020f4eb7c0b9
+Directory: gazebo/8/ubuntu/xenial/libgazebo8

+ 9 - 2
library/gcc

@@ -4,16 +4,23 @@ Maintainers: Tianon Gravi <[email protected]> (@tianon),
              Joseph Ferguson <[email protected]> (@yosifkit)
 GitRepo: https://github.com/docker-library/gcc.git
 
+# Last Modified: 2017-10-10
+Tags: 5.5.0, 5.5, 5
+Architectures: amd64, arm32v5, arm32v7, arm64v8, ppc64le, s390x
+GitCommit: 18171698e694c648ccf2cc1aa98ea806b58701d5
+Directory: 5
+# Docker EOL: 2018-10-10
+
 # Last Modified: 2017-07-04
 Tags: 6.4.0, 6.4, 6
 Architectures: amd64, arm32v5, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: 1539ed62d45cbd1e2a4d0c3e94c07ca2acdb914a
+GitCommit: 18171698e694c648ccf2cc1aa98ea806b58701d5
 Directory: 6
 # Docker EOL: 2018-07-04
 
 # Last Modified: 2017-08-14
 Tags: 7.2.0, 7.2, 7, latest
 Architectures: amd64, arm32v5, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: 1539ed62d45cbd1e2a4d0c3e94c07ca2acdb914a
+GitCommit: 18171698e694c648ccf2cc1aa98ea806b58701d5
 Directory: 7
 # Docker EOL: 2018-08-14

+ 10 - 10
library/ghost

@@ -4,22 +4,22 @@ Maintainers: Tianon Gravi <[email protected]> (@tianon),
              Joseph Ferguson <[email protected]> (@yosifkit)
 GitRepo: https://github.com/docker-library/ghost.git
 
-Tags: 1.12.0, 1.12, 1, latest
-Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: 2ef499bc13d24c2ec222bf2e8b0e6abadc81d211
+Tags: 1.17.1, 1.17, 1, latest
+Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 933884147645ff393aac112ace13329057a8dd4e
 Directory: 1/debian
 
-Tags: 1.12.0-alpine, 1.12-alpine, 1-alpine, alpine
+Tags: 1.17.1-alpine, 1.17-alpine, 1-alpine, alpine
 Architectures: amd64
-GitCommit: 2ef499bc13d24c2ec222bf2e8b0e6abadc81d211
+GitCommit: 933884147645ff393aac112ace13329057a8dd4e
 Directory: 1/alpine
 
-Tags: 0.11.11, 0.11, 0
-Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: 0a3f9385d624bc3511b4f702671dcc27ae96de66
+Tags: 0.11.12, 0.11, 0
+Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 44dc27d05debece6a738ccbddd85d2ed4adc2eac
 Directory: 0/debian
 
-Tags: 0.11.11-alpine, 0.11-alpine, 0-alpine
+Tags: 0.11.12-alpine, 0.11-alpine, 0-alpine
 Architectures: amd64
-GitCommit: fabb247507dc8b2d20c5795d688c4167b98caf4a
+GitCommit: 44dc27d05debece6a738ccbddd85d2ed4adc2eac
 Directory: 0/alpine

+ 31 - 27
library/golang

@@ -1,65 +1,69 @@
-# this file is generated via https://github.com/docker-library/golang/blob/e0ac3d629dc06dcf25ba6724f7126a79723a74af/generate-stackbrew-library.sh
+# this file is generated via https://github.com/docker-library/golang/blob/9898665371e4d61803313ff59c838a66a4a39b29/generate-stackbrew-library.sh
 
 Maintainers: Tianon Gravi <[email protected]> (@tianon),
              Joseph Ferguson <[email protected]> (@yosifkit),
              Johan Euphrosine <[email protected]> (@proppy)
 GitRepo: https://github.com/docker-library/golang.git
 
-Tags: 1.9.1-stretch, 1.9-stretch, 1-stretch, stretch, 1.9.1, 1.9, 1, latest
+Tags: 1.9.2-stretch, 1.9-stretch, 1-stretch, stretch
+SharedTags: 1.9.2, 1.9, 1, latest
 Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 221ee92559f2963c1fe55646d3516f5b8f4c91a4
+GitCommit: cffcff7fce7f6b6b5c82fc8f7b3331a10590a661
 Directory: 1.9/stretch
 
-Tags: 1.9.1-alpine3.6, 1.9-alpine3.6, 1-alpine3.6, alpine3.6, 1.9.1-alpine, 1.9-alpine, 1-alpine, alpine
-Architectures: amd64
-GitCommit: 221ee92559f2963c1fe55646d3516f5b8f4c91a4
+Tags: 1.9.2-alpine3.6, 1.9-alpine3.6, 1-alpine3.6, alpine3.6, 1.9.2-alpine, 1.9-alpine, 1-alpine, alpine
+Architectures: amd64, arm32v6, arm64v8, i386, ppc64le, s390x
+GitCommit: bb5a9205c84b1af7daea647e144f2517497cc7ef
 Directory: 1.9/alpine3.6
 
-Tags: 1.9.1-windowsservercore, 1.9-windowsservercore, 1-windowsservercore, windowsservercore
+Tags: 1.9.2-windowsservercore, 1.9-windowsservercore, 1-windowsservercore, windowsservercore
+SharedTags: 1.9.2, 1.9, 1, latest
 Architectures: windows-amd64
-GitCommit: 221ee92559f2963c1fe55646d3516f5b8f4c91a4
+GitCommit: cffcff7fce7f6b6b5c82fc8f7b3331a10590a661
 Directory: 1.9/windows/windowsservercore
 Constraints: windowsservercore
 
-Tags: 1.9.1-nanoserver, 1.9-nanoserver, 1-nanoserver, nanoserver
+Tags: 1.9.2-nanoserver, 1.9-nanoserver, 1-nanoserver, nanoserver
 Architectures: windows-amd64
-GitCommit: 221ee92559f2963c1fe55646d3516f5b8f4c91a4
+GitCommit: cffcff7fce7f6b6b5c82fc8f7b3331a10590a661
 Directory: 1.9/windows/nanoserver
 Constraints: nanoserver
 
-Tags: 1.8.4-stretch, 1.8-stretch
-Architectures: amd64, arm32v7, i386, ppc64le, s390x
-GitCommit: 1116b4262228428be20d7e9413ad277c716adb16
+Tags: 1.8.5-stretch, 1.8-stretch
+Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 87aaffce8f74bc5bee1306539030ee413c32aee4
 Directory: 1.8/stretch
 
-Tags: 1.8.4-jessie, 1.8-jessie, 1.8.4, 1.8
-Architectures: amd64, arm32v7, i386, ppc64le, s390x
-GitCommit: 1116b4262228428be20d7e9413ad277c716adb16
+Tags: 1.8.5-jessie, 1.8-jessie
+SharedTags: 1.8.5, 1.8
+Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 87aaffce8f74bc5bee1306539030ee413c32aee4
 Directory: 1.8/jessie
 
-Tags: 1.8.4-alpine3.6, 1.8-alpine3.6
-Architectures: amd64
-GitCommit: 1116b4262228428be20d7e9413ad277c716adb16
+Tags: 1.8.5-alpine3.6, 1.8-alpine3.6
+Architectures: amd64, arm32v6, arm64v8, i386, ppc64le, s390x
+GitCommit: cffcff7fce7f6b6b5c82fc8f7b3331a10590a661
 Directory: 1.8/alpine3.6
 
-Tags: 1.8.4-alpine3.5, 1.8-alpine3.5, 1.8.4-alpine, 1.8-alpine
+Tags: 1.8.5-alpine3.5, 1.8-alpine3.5, 1.8.5-alpine, 1.8-alpine
 Architectures: amd64
-GitCommit: 1116b4262228428be20d7e9413ad277c716adb16
+GitCommit: cffcff7fce7f6b6b5c82fc8f7b3331a10590a661
 Directory: 1.8/alpine3.5
 
-Tags: 1.8.4-onbuild, 1.8-onbuild
-Architectures: amd64, arm32v7, i386, ppc64le, s390x
+Tags: 1.8.5-onbuild, 1.8-onbuild
+Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
 GitCommit: 132cd70768e3bc269902e4c7b579203f66dc9f64
 Directory: 1.8/onbuild
 
-Tags: 1.8.4-windowsservercore, 1.8-windowsservercore
+Tags: 1.8.5-windowsservercore, 1.8-windowsservercore
+SharedTags: 1.8.5, 1.8
 Architectures: windows-amd64
-GitCommit: 1116b4262228428be20d7e9413ad277c716adb16
+GitCommit: cffcff7fce7f6b6b5c82fc8f7b3331a10590a661
 Directory: 1.8/windows/windowsservercore
 Constraints: windowsservercore
 
-Tags: 1.8.4-nanoserver, 1.8-nanoserver
+Tags: 1.8.5-nanoserver, 1.8-nanoserver
 Architectures: windows-amd64
-GitCommit: 1116b4262228428be20d7e9413ad277c716adb16
+GitCommit: cffcff7fce7f6b6b5c82fc8f7b3331a10590a661
 Directory: 1.8/windows/nanoserver
 Constraints: nanoserver

+ 20 - 20
library/gradle

@@ -1,42 +1,42 @@
 Maintainers: Keegan Witt <[email protected]> (@keeganwitt)
 GitRepo: https://github.com/keeganwitt/docker-gradle.git
 
-Tags: 4.2.0-jdk7, 4.2-jdk7, jdk7
-GitCommit: 65d97a521e3af7b537c0ba7a33b4a0685f66b457
+Tags: 4.3.0-jdk7, 4.3-jdk7, jdk7
+GitCommit: bb744a56314f1621f3f4bd596d058f93fd3c1a9b
 Directory: jdk7
 
-Tags: 4.2.0-jre7, 4.2-jre7, jre7
-GitCommit: 65d97a521e3af7b537c0ba7a33b4a0685f66b457
+Tags: 4.3.0-jre7, 4.3-jre7, jre7
+GitCommit: bb744a56314f1621f3f4bd596d058f93fd3c1a9b
 Directory: jre7
 
-Tags: 4.2.0-jdk7-alpine, 4.2-jdk7-alpine, jdk7-alpine
-GitCommit: 65d97a521e3af7b537c0ba7a33b4a0685f66b457
+Tags: 4.3.0-jdk7-alpine, 4.3-jdk7-alpine, jdk7-alpine
+GitCommit: bb744a56314f1621f3f4bd596d058f93fd3c1a9b
 Directory: jdk7-alpine
 
-Tags: 4.2.0-jre7-alpine, 4.2-jre7-alpine, jre7-alpine
-GitCommit: 65d97a521e3af7b537c0ba7a33b4a0685f66b457
+Tags: 4.3.0-jre7-alpine, 4.3-jre7-alpine, jre7-alpine
+GitCommit: bb744a56314f1621f3f4bd596d058f93fd3c1a9b
 Directory: jre7-alpine
 
-Tags: 4.2.0-jdk8, 4.2-jdk8, jdk8, 4.2.0-jdk, 4.2-jdk, jdk, 4.2.0, 4.2, latest
-GitCommit: 65d97a521e3af7b537c0ba7a33b4a0685f66b457
+Tags: 4.3.0-jdk8, 4.3-jdk8, jdk8, 4.3.0-jdk, 4.3-jdk, jdk, 4.3.0, 4.3, latest
+GitCommit: bb744a56314f1621f3f4bd596d058f93fd3c1a9b
 Directory: jdk8
 
-Tags: 4.2.0-jre8, 4.2-jre8, jre8, 4.2.0-jre, 4.2-jre, jre
-GitCommit: 65d97a521e3af7b537c0ba7a33b4a0685f66b457
+Tags: 4.3.0-jre8, 4.3-jre8, jre8, 4.3.0-jre, 4.3-jre, jre
+GitCommit: bb744a56314f1621f3f4bd596d058f93fd3c1a9b
 Directory: jre8
 
-Tags: 4.2.0-jdk8-alpine, 4.2-jdk8-alpine, jdk8-alpine, 4.2.0-jdk-alpine, 4.2-jdk-alpine, jdk-alpine, 4.2.0-alpine, 4.2-alpine, alpine
-GitCommit: 65d97a521e3af7b537c0ba7a33b4a0685f66b457
+Tags: 4.3.0-jdk8-alpine, 4.3-jdk8-alpine, jdk8-alpine, 4.3.0-jdk-alpine, 4.3-jdk-alpine, jdk-alpine, 4.3.0-alpine, 4.3-alpine, alpine
+GitCommit: bb744a56314f1621f3f4bd596d058f93fd3c1a9b
 Directory: jdk8-alpine
 
-Tags: 4.2.0-jre8-alpine, 4.2-jre8-alpine, jre8-alpine, 4.2.0-jre-alpine, 4.2-jre-alpine, jre-alpine
-GitCommit: 65d97a521e3af7b537c0ba7a33b4a0685f66b457
+Tags: 4.3.0-jre8-alpine, 4.3-jre8-alpine, jre8-alpine, 4.3.0-jre-alpine, 4.3-jre-alpine, jre-alpine
+GitCommit: bb744a56314f1621f3f4bd596d058f93fd3c1a9b
 Directory: jre8-alpine
 
-Tags: 4.2.0-jdk9, 4.2-jdk9, jdk9
-GitCommit: 65d97a521e3af7b537c0ba7a33b4a0685f66b457
+Tags: 4.3.0-jdk9, 4.3-jdk9, jdk9
+GitCommit: bb744a56314f1621f3f4bd596d058f93fd3c1a9b
 Directory: jdk9
 
-Tags: 4.2.0-jre9, 4.2-jre9, jre9
-GitCommit: 65d97a521e3af7b537c0ba7a33b4a0685f66b457
+Tags: 4.3.0-jre9, 4.3-jre9, jre9
+GitCommit: bb744a56314f1621f3f4bd596d058f93fd3c1a9b
 Directory: jre9

+ 30 - 30
library/groovy

@@ -2,143 +2,143 @@ Maintainers: Keegan Witt <[email protected]> (@keeganwitt)
 GitRepo: https://github.com/groovy/docker-groovy.git
 
 Tags: 2.4.12-jdk7, 2.4-jdk7, jdk7
-GitCommit: 5946f838dd18919efc335da19311fbaab0b2a29b
+GitCommit: b249c86a3d6bc7544028076153902b880f304422
 Directory: jdk7
 
 Tags: 2.4.12-jre7, 2.4-jre7, jre7
-GitCommit: 5946f838dd18919efc335da19311fbaab0b2a29b
+GitCommit: b249c86a3d6bc7544028076153902b880f304422
 Directory: jre7
 
 Tags: 2.4.12-jdk7-alpine, 2.4-jdk7-alpine, jdk7-alpine
-GitCommit: 5946f838dd18919efc335da19311fbaab0b2a29b
+GitCommit: b249c86a3d6bc7544028076153902b880f304422
 Directory: jdk7-alpine
 
 Tags: 2.4.12-jre7-alpine, 2.4-jre7-alpine, jre7-alpine
-GitCommit: 5946f838dd18919efc335da19311fbaab0b2a29b
+GitCommit: b249c86a3d6bc7544028076153902b880f304422
 Directory: jre7-alpine
 
 Tags: 2.4.12-jdk8, 2.4-jdk8, jdk8, 2.4.12-jdk, 2.4-jdk, jdk
-GitCommit: 5946f838dd18919efc335da19311fbaab0b2a29b
+GitCommit: b249c86a3d6bc7544028076153902b880f304422
 Directory: jdk8
 
 Tags: 2.4.12-jre8, 2.4-jre8, jre8, 2.4.12-jre, 2.4-jre, jre, 2.4.12, 2.4, latest
-GitCommit: 5946f838dd18919efc335da19311fbaab0b2a29b
+GitCommit: b249c86a3d6bc7544028076153902b880f304422
 Directory: jre8
 
 Tags: 2.4.12-jdk8-alpine, 2.4-jdk8-alpine, jdk8-alpine, 2.4.12-jdk-alpine, 2.4-jdk-alpine, jdk-alpine
-GitCommit: 5946f838dd18919efc335da19311fbaab0b2a29b
+GitCommit: b249c86a3d6bc7544028076153902b880f304422
 Directory: jdk8-alpine
 
 Tags: 2.4.12-jre8-alpine, 2.4-jre8-alpine, jre8-alpine, 2.4.12-jre-alpine, 2.4-jre-alpine, jre-alpine, 2.4.12-alpine, 2.4-alpine, alpine
-GitCommit: 5946f838dd18919efc335da19311fbaab0b2a29b
+GitCommit: b249c86a3d6bc7544028076153902b880f304422
 Directory: jre8-alpine
 
 Tags: 2.4.12-jdk9, 2.4-jdk9, jdk9
-GitCommit: 5946f838dd18919efc335da19311fbaab0b2a29b
+GitCommit: b249c86a3d6bc7544028076153902b880f304422
 Directory: jdk9
 
 Tags: 2.4.12-jre9, 2.4-jre9, jre9
-GitCommit: 5946f838dd18919efc335da19311fbaab0b2a29b
+GitCommit: b249c86a3d6bc7544028076153902b880f304422
 Directory: jre9
 
 
 Tags: 2.5.0-beta-1-jdk7, 2.5-jdk7
 GitFetch: refs/heads/beta
-GitCommit: 69b40f5b88b4d022e5393116b8995cc98515b594
+GitCommit: d0b90af7b6d3b944e5f72db8e3ed6e3145d995ed
 Directory: jdk7
 
 Tags: 2.5.0-beta-1-jre7, 2.5-jre7
 GitFetch: refs/heads/beta
-GitCommit: 69b40f5b88b4d022e5393116b8995cc98515b594
+GitCommit: d0b90af7b6d3b944e5f72db8e3ed6e3145d995ed
 Directory: jre7
 
 Tags: 2.5.0-beta-1-jdk7-alpine, 2.5-jdk7-alpine
 GitFetch: refs/heads/beta
-GitCommit: 69b40f5b88b4d022e5393116b8995cc98515b594
+GitCommit: d0b90af7b6d3b944e5f72db8e3ed6e3145d995ed
 Directory: jdk7-alpine
 
 Tags: 2.5.0-beta-1-jre7-alpine, 2.5-jre7-alpine
 GitFetch: refs/heads/beta
-GitCommit: 69b40f5b88b4d022e5393116b8995cc98515b594
+GitCommit: d0b90af7b6d3b944e5f72db8e3ed6e3145d995ed
 Directory: jre7-alpine
 
 Tags: 2.5.0-beta-1-jdk8, 2.5-jdk8, 2.5.0-beta-1-jdk, 2.5-jdk
 GitFetch: refs/heads/beta
-GitCommit: 69b40f5b88b4d022e5393116b8995cc98515b594
+GitCommit: d0b90af7b6d3b944e5f72db8e3ed6e3145d995ed
 Directory: jdk8
 
 Tags: 2.5.0-beta-1-jre8, 2.5-jre8, 2.5.0-beta-1-jre, 2.5-jre, 2.5.0-beta-1, 2.5
 GitFetch: refs/heads/beta
-GitCommit: 69b40f5b88b4d022e5393116b8995cc98515b594
+GitCommit: d0b90af7b6d3b944e5f72db8e3ed6e3145d995ed
 Directory: jre8
 
 Tags: 2.5.0-beta-1-jdk8-alpine, 2.5-jdk8-alpine, 2.5.0-beta-1-jdk-alpine, 2.5-jdk-alpine
 GitFetch: refs/heads/beta
-GitCommit: 69b40f5b88b4d022e5393116b8995cc98515b594
+GitCommit: d0b90af7b6d3b944e5f72db8e3ed6e3145d995ed
 Directory: jdk8-alpine
 
 Tags: 2.5.0-beta-1-jre8-alpine, 2.5-jre8-alpine, 2.5.0-beta-1-jre-alpine, 2.5-jre-alpine, 2.5.0-beta-1-alpine, 2.5-alpine
 GitFetch: refs/heads/beta
-GitCommit: 69b40f5b88b4d022e5393116b8995cc98515b594
+GitCommit: d0b90af7b6d3b944e5f72db8e3ed6e3145d995ed
 Directory: jre8-alpine
 
 Tags: 2.5.0-beta-1-jdk9, 2.5-jdk9
 GitFetch: refs/heads/beta
-GitCommit: 69b40f5b88b4d022e5393116b8995cc98515b594
+GitCommit: d0b90af7b6d3b944e5f72db8e3ed6e3145d995ed
 Directory: jdk9
 
 Tags: 2.5.0-beta-1-jre9, 2.5-jre9
 GitFetch: refs/heads/beta
-GitCommit: 69b40f5b88b4d022e5393116b8995cc98515b594
+GitCommit: d0b90af7b6d3b944e5f72db8e3ed6e3145d995ed
 Directory: jre9
 
 
 Tags: 2.6.0-alpha-1-jdk7, 2.6-jdk7
 GitFetch: refs/heads/alpha
-GitCommit: ed957c25d14e389dacef8bad7d5ed7026bb35edf
+GitCommit: 7aa0d2bb31475ed6e6264e01716316d0c6b7abd2
 Directory: jdk7
 
 Tags: 2.6.0-alpha-1-jre7, 2.6-jre7
 GitFetch: refs/heads/alpha
-GitCommit: ed957c25d14e389dacef8bad7d5ed7026bb35edf
+GitCommit: 7aa0d2bb31475ed6e6264e01716316d0c6b7abd2
 Directory: jre7
 
 Tags: 2.6.0-alpha-1-jdk7-alpine, 2.6-jdk7-alpine
 GitFetch: refs/heads/alpha
-GitCommit: ed957c25d14e389dacef8bad7d5ed7026bb35edf
+GitCommit: 7aa0d2bb31475ed6e6264e01716316d0c6b7abd2
 Directory: jdk7-alpine
 
 Tags: 2.6.0-alpha-1-jre7-alpine, 2.6-jre7-alpine
 GitFetch: refs/heads/alpha
-GitCommit: ed957c25d14e389dacef8bad7d5ed7026bb35edf
+GitCommit: 7aa0d2bb31475ed6e6264e01716316d0c6b7abd2
 Directory: jre7-alpine
 
 Tags: 2.6.0-alpha-1-jdk8, 2.6-jdk8, 2.6.0-alpha-1-jdk, 2.6-jdk
 GitFetch: refs/heads/alpha
-GitCommit: ed957c25d14e389dacef8bad7d5ed7026bb35edf
+GitCommit: 7aa0d2bb31475ed6e6264e01716316d0c6b7abd2
 Directory: jdk8
 
 Tags: 2.6.0-alpha-1-jre8, 2.6-jre8, 2.6.0-alpha-1-jre, 2.6-jre, 2.6.0-alpha-1, 2.6
 GitFetch: refs/heads/alpha
-GitCommit: ed957c25d14e389dacef8bad7d5ed7026bb35edf
+GitCommit: 7aa0d2bb31475ed6e6264e01716316d0c6b7abd2
 Directory: jre8
 
 Tags: 2.6.0-alpha-1-jdk8-alpine, 2.6-jdk8-alpine, 2.6.0-alpha-1-jdk-alpine, 2.6-jdk-alpine
 GitFetch: refs/heads/alpha
-GitCommit: ed957c25d14e389dacef8bad7d5ed7026bb35edf
+GitCommit: 7aa0d2bb31475ed6e6264e01716316d0c6b7abd2
 Directory: jdk8-alpine
 
 Tags: 2.6.0-alpha-1-jre8-alpine, 2.6-jre8-alpine, 2.6.0-alpha-1-jre-alpine, 2.6-jre-alpine, 2.6.0-alpha-1-alpine, 2.6-alpine
 GitFetch: refs/heads/alpha
-GitCommit: ed957c25d14e389dacef8bad7d5ed7026bb35edf
+GitCommit: 7aa0d2bb31475ed6e6264e01716316d0c6b7abd2
 Directory: jre8-alpine
 
 Tags: 2.6.0-alpha-1-jdk9, 2.6-jdk9
 GitFetch: refs/heads/alpha
-GitCommit: ed957c25d14e389dacef8bad7d5ed7026bb35edf
+GitCommit: 7aa0d2bb31475ed6e6264e01716316d0c6b7abd2
 Directory: jdk9
 
 Tags: 2.6.0-alpha-1-jre9, 2.6-jre9
 GitFetch: refs/heads/alpha
-GitCommit: ed957c25d14e389dacef8bad7d5ed7026bb35edf
+GitCommit: 7aa0d2bb31475ed6e6264e01716316d0c6b7abd2
 Directory: jre9

+ 23 - 8
library/haxe

@@ -1,27 +1,32 @@
 Maintainers: Andy Li <[email protected]> (@andyli)
 GitRepo: https://github.com/HaxeFoundation/docker-library-haxe.git
 
-Tags: 3.4.3-stretch, 3.4-stretch, 3.4.3, 3.4, latest
+Tags: 3.4.4-stretch, 3.4-stretch, 3.4.4, 3.4, latest
 Architectures: amd64
-GitCommit: 55b42a6d36178f4ffe3ff6240c7cf9d3d4bacb92
+GitCommit: 4d1efc06f99732c3530a9550adaef330e4896eda
 Directory: 3.4/stretch
 
-Tags: 3.4.3-jessie, 3.4-jessie
+Tags: 3.4.4-jessie, 3.4-jessie
 Architectures: amd64
-GitCommit: 55b42a6d36178f4ffe3ff6240c7cf9d3d4bacb92
+GitCommit: 4d1efc06f99732c3530a9550adaef330e4896eda
 Directory: 3.4/jessie
 
-Tags: 3.4.3-onbuild, 3.4-onbuild
+Tags: 3.4.4-onbuild, 3.4-onbuild
 Architectures: amd64
-GitCommit: 55b42a6d36178f4ffe3ff6240c7cf9d3d4bacb92
+GitCommit: 4d1efc06f99732c3530a9550adaef330e4896eda
 Directory: 3.4/onbuild
 
-Tags: 3.4.3-windowsservercore, 3.4-windowsservercore
+Tags: 3.4.4-windowsservercore, 3.4-windowsservercore
 Architectures: windows-amd64
-GitCommit: 55b42a6d36178f4ffe3ff6240c7cf9d3d4bacb92
+GitCommit: 4d1efc06f99732c3530a9550adaef330e4896eda
 Directory: 3.4/windowsservercore
 Constraints: windowsservercore
 
+Tags: 3.4.4-alpine3.6, 3.4-alpine3.6, 3.4.4-alpine, 3.4-alpine
+Architectures: amd64
+GitCommit: 417db03257ac556fffd130003c80be7dbe89ef1c
+Directory: 3.4/alpine3.6
+
 Tags: 3.3.0-rc.1-stretch, 3.3.0-stretch, 3.3-stretch, 3.3.0-rc.1, 3.3.0, 3.3
 Architectures: amd64
 GitCommit: 718e80d01e38b9e40b4f221c2ed54d7d134d80f7
@@ -43,6 +48,11 @@ GitCommit: ba6ec51ec4db8248066b9a294b22bcbfd83a20f4
 Directory: 3.3/windowsservercore
 Constraints: windowsservercore
 
+Tags: 3.3.0-rc.1-alpine3.6, 3.3.0-rc.1-alpine, 3.3.0-alpine3.6, 3.3-alpine3.6, 3.3.0-alpine, 3.3-alpine
+Architectures: amd64
+GitCommit: 417db03257ac556fffd130003c80be7dbe89ef1c
+Directory: 3.3/alpine3.6
+
 Tags: 3.2.1-stretch, 3.2-stretch, 3.2.1, 3.2
 Architectures: amd64
 GitCommit: 718e80d01e38b9e40b4f221c2ed54d7d134d80f7
@@ -64,6 +74,11 @@ GitCommit: ba6ec51ec4db8248066b9a294b22bcbfd83a20f4
 Directory: 3.2/windowsservercore
 Constraints: windowsservercore
 
+Tags: 3.2.1-alpine3.6, 3.2-alpine3.6, 3.2.1-alpine, 3.2-alpine
+Architectures: amd64
+GitCommit: 417db03257ac556fffd130003c80be7dbe89ef1c
+Directory: 3.2/alpine3.6
+
 Tags: 3.1.3-stretch, 3.1-stretch, 3.1.3, 3.1
 Architectures: amd64
 GitCommit: 718e80d01e38b9e40b4f221c2ed54d7d134d80f7

+ 9 - 2
library/hello-seattle

@@ -1,9 +1,9 @@
-# this file is generated via https://github.com/docker-library/hello-world/blob/e7ae2cf479db53d3110a0b5a609a32641a39467c/generate-stackbrew-library.sh
+# this file is generated via https://github.com/docker-library/hello-world/blob/b9c8214f529b04e37683fddba4a4244308f046e8/generate-stackbrew-library.sh
 
 Maintainers: Tianon Gravi <[email protected]> (@tianon),
              Joseph Ferguson <[email protected]> (@yosifkit)
 GitRepo: https://github.com/docker-library/hello-world.git
-GitCommit: e7ae2cf479db53d3110a0b5a609a32641a39467c
+GitCommit: b9c8214f529b04e37683fddba4a4244308f046e8
 
 Tags: linux
 SharedTags: latest
@@ -29,3 +29,10 @@ Architectures: windows-amd64
 windows-amd64-GitCommit: b63893caa6ec64d8159f8bd45b3745ed4f12f605
 windows-amd64-Directory: amd64/hello-seattle/nanoserver
 Constraints: nanoserver
+
+Tags: nanoserver1709
+SharedTags: latest
+Architectures: windows-amd64
+windows-amd64-GitCommit: b9c8214f529b04e37683fddba4a4244308f046e8
+windows-amd64-Directory: amd64/hello-seattle/nanoserver1709
+Constraints: nanoserver1709

+ 9 - 2
library/hello-world

@@ -1,9 +1,9 @@
-# this file is generated via https://github.com/docker-library/hello-world/blob/e7ae2cf479db53d3110a0b5a609a32641a39467c/generate-stackbrew-library.sh
+# this file is generated via https://github.com/docker-library/hello-world/blob/b9c8214f529b04e37683fddba4a4244308f046e8/generate-stackbrew-library.sh
 
 Maintainers: Tianon Gravi <[email protected]> (@tianon),
              Joseph Ferguson <[email protected]> (@yosifkit)
 GitRepo: https://github.com/docker-library/hello-world.git
-GitCommit: e7ae2cf479db53d3110a0b5a609a32641a39467c
+GitCommit: b9c8214f529b04e37683fddba4a4244308f046e8
 
 Tags: linux
 SharedTags: latest
@@ -29,3 +29,10 @@ Architectures: windows-amd64
 windows-amd64-GitCommit: b63893caa6ec64d8159f8bd45b3745ed4f12f605
 windows-amd64-Directory: amd64/hello-world/nanoserver
 Constraints: nanoserver
+
+Tags: nanoserver1709
+SharedTags: latest
+Architectures: windows-amd64
+windows-amd64-GitCommit: b9c8214f529b04e37683fddba4a4244308f046e8
+windows-amd64-Directory: amd64/hello-world/nanoserver1709
+Constraints: nanoserver1709

+ 9 - 2
library/hola-mundo

@@ -1,9 +1,9 @@
-# this file is generated via https://github.com/docker-library/hello-world/blob/e7ae2cf479db53d3110a0b5a609a32641a39467c/generate-stackbrew-library.sh
+# this file is generated via https://github.com/docker-library/hello-world/blob/b9c8214f529b04e37683fddba4a4244308f046e8/generate-stackbrew-library.sh
 
 Maintainers: Tianon Gravi <[email protected]> (@tianon),
              Joseph Ferguson <[email protected]> (@yosifkit)
 GitRepo: https://github.com/docker-library/hello-world.git
-GitCommit: e7ae2cf479db53d3110a0b5a609a32641a39467c
+GitCommit: b9c8214f529b04e37683fddba4a4244308f046e8
 
 Tags: linux
 SharedTags: latest
@@ -29,3 +29,10 @@ Architectures: windows-amd64
 windows-amd64-GitCommit: b63893caa6ec64d8159f8bd45b3745ed4f12f605
 windows-amd64-Directory: amd64/hola-mundo/nanoserver
 Constraints: nanoserver
+
+Tags: nanoserver1709
+SharedTags: latest
+Architectures: windows-amd64
+windows-amd64-GitCommit: b9c8214f529b04e37683fddba4a4244308f046e8
+windows-amd64-Directory: amd64/hola-mundo/nanoserver1709
+Constraints: nanoserver1709

+ 7 - 7
library/httpd

@@ -6,20 +6,20 @@ GitRepo: https://github.com/docker-library/httpd.git
 
 Tags: 2.2.34, 2.2
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 53654452889ae3af537eef2dbb981ccac6fb907f
+GitCommit: c14a031c014aa2219aea2e73786f577300756f0b
 Directory: 2.2
 
 Tags: 2.2.34-alpine, 2.2-alpine
 Architectures: amd64
-GitCommit: 3d5133cff766a1b6d734c9ac107613b7e53f2378
+GitCommit: c14a031c014aa2219aea2e73786f577300756f0b
 Directory: 2.2/alpine
 
-Tags: 2.4.28, 2.4, 2, latest
+Tags: 2.4.29, 2.4, 2, latest
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 5b3b87b10907617b0d69af4308ae1dfa21ccf703
+GitCommit: 6d50d7f89f4d8bc6a6a3f86d892e254f4d6bfd8b
 Directory: 2.4
 
-Tags: 2.4.28-alpine, 2.4-alpine, 2-alpine, alpine
-Architectures: amd64
-GitCommit: 5b3b87b10907617b0d69af4308ae1dfa21ccf703
+Tags: 2.4.29-alpine, 2.4-alpine, 2-alpine, alpine
+Architectures: amd64, arm32v6, arm64v8, i386, ppc64le, s390x
+GitCommit: 7976cabe162268bd5ad2d233d61e340447bfc371
 Directory: 2.4/alpine

+ 8 - 8
library/ibmjava

@@ -5,41 +5,41 @@ GitRepo: https://github.com/ibmruntimes/ci.docker.git
 
 Tags: 8-jre, jre, 8, latest
 Architectures: amd64, i386, ppc64le, s390x
-GitCommit: 9bd29a750a39cd8f89c9dcd3a4791cf6548a5344
+GitCommit: e1eb066c7d9360c53574f75f367d0a2c53ffe1d9
 Directory: ibmjava/8/jre/ubuntu
 
 Tags: 8-jre-alpine, jre-alpine
 Architectures: amd64
-GitCommit: 9bd29a750a39cd8f89c9dcd3a4791cf6548a5344
+GitCommit: e1eb066c7d9360c53574f75f367d0a2c53ffe1d9
 Directory: ibmjava/8/jre/alpine
 
 Tags: 8-sfj, sfj
 Architectures: amd64, i386, ppc64le, s390x
-GitCommit: 9bd29a750a39cd8f89c9dcd3a4791cf6548a5344
+GitCommit: e1eb066c7d9360c53574f75f367d0a2c53ffe1d9
 Directory: ibmjava/8/sfj/ubuntu
 
 Tags: 8-sfj-alpine, sfj-alpine
 Architectures: amd64
-GitCommit: 9bd29a750a39cd8f89c9dcd3a4791cf6548a5344
+GitCommit: e1eb066c7d9360c53574f75f367d0a2c53ffe1d9
 Directory: ibmjava/8/sfj/alpine
 
 Tags: 8-sdk, sdk
 Architectures: amd64, i386, ppc64le, s390x
-GitCommit: 9bd29a750a39cd8f89c9dcd3a4791cf6548a5344
+GitCommit: e1eb066c7d9360c53574f75f367d0a2c53ffe1d9
 Directory: ibmjava/8/sdk/ubuntu
 
 Tags: 8-sdk-alpine, sdk-alpine
 Architectures: amd64
-GitCommit: 9bd29a750a39cd8f89c9dcd3a4791cf6548a5344
+GitCommit: e1eb066c7d9360c53574f75f367d0a2c53ffe1d9
 Directory: ibmjava/8/sdk/alpine
 
 Tags: 9-sdk
 Architectures: amd64, i386, ppc64le, s390x
-GitCommit: 9bd29a750a39cd8f89c9dcd3a4791cf6548a5344
+GitCommit: e1eb066c7d9360c53574f75f367d0a2c53ffe1d9
 Directory: ibmjava/9/sdk/ubuntu
 
 Tags: 9-sdk-alpine
 Architectures: amd64
-GitCommit: 9bd29a750a39cd8f89c9dcd3a4791cf6548a5344
+GitCommit: e1eb066c7d9360c53574f75f367d0a2c53ffe1d9
 Directory: ibmjava/9/sdk/alpine
 

+ 12 - 12
library/influxdb

@@ -1,23 +1,23 @@
 Maintainers: Jonathan A. Sternberg <[email protected]> (@jsternberg)
 
-Tags: 1.2, 1.2.4
+Tags: 1.3, 1.3.7
 Architectures: amd64, arm32v7, arm64v8
 GitRepo: git://github.com/influxdata/influxdata-docker
-GitCommit: dc4f0480be886393041acf1c3f739f197d45b9c3
-Directory: influxdb/1.2
+GitCommit: 9ee53b2d2e224da5cd4debb3b7d4e934c882fdc4
+Directory: influxdb/1.3
 
-Tags: 1.2-alpine, 1.2.4-alpine
+Tags: 1.3-alpine, 1.3.7-alpine
 GitRepo: git://github.com/influxdata/influxdata-docker
-GitCommit: dc4f0480be886393041acf1c3f739f197d45b9c3
-Directory: influxdb/1.2/alpine
+GitCommit: 9ee53b2d2e224da5cd4debb3b7d4e934c882fdc4
+Directory: influxdb/1.3/alpine
 
-Tags: 1.3, 1.3.6, latest
+Tags: 1.4, 1.4.1, latest
 Architectures: amd64, arm32v7, arm64v8
 GitRepo: git://github.com/influxdata/influxdata-docker
-GitCommit: 007a07b94e87bfc66d62a937cd2a6073f92f81dc
-Directory: influxdb/1.3
+GitCommit: 3cda121bba1f69a6408f1110d69b0933e9a8335f
+Directory: influxdb/1.4
 
-Tags: 1.3-alpine, 1.3.6-alpine, alpine
+Tags: 1.4-alpine, 1.4.1-alpine, alpine
 GitRepo: git://github.com/influxdata/influxdata-docker
-GitCommit: 007a07b94e87bfc66d62a937cd2a6073f92f81dc
-Directory: influxdb/1.3/alpine
+GitCommit: 3cda121bba1f69a6408f1110d69b0933e9a8335f
+Directory: influxdb/1.4/alpine

+ 5 - 5
library/irssi

@@ -4,12 +4,12 @@ Maintainers: Jessie Frazelle <[email protected]> (@jessfraz),
              Tianon Gravi <[email protected]> (@tianon)
 GitRepo: https://github.com/jessfraz/irssi.git
 
-Tags: 1.0.4, 1.0, 1, latest
+Tags: 1.0.5, 1.0, 1, latest
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 95671eb7309e646addd82699ddaf6065ea57e271
+GitCommit: baf8c9887dcbe070d522ebd50e8cfd272e0618fd
 Directory: debian
 
-Tags: 1.0.4-alpine, 1.0-alpine, 1-alpine, alpine
-Architectures: amd64
-GitCommit: ecf3007a6598bc2e7783e24acd5c62dc57dc9f0a
+Tags: 1.0.5-alpine, 1.0-alpine, 1-alpine, alpine
+Architectures: amd64, arm32v6, arm64v8, i386, ppc64le, s390x
+GitCommit: baf8c9887dcbe070d522ebd50e8cfd272e0618fd
 Directory: alpine

+ 7 - 6
library/jetty

@@ -4,24 +4,25 @@ GitRepo: https://github.com/appropriate/docker-jetty.git
 
 Tags: 9.4.7, 9.4, 9, 9.4.7-jre8, 9.4-jre8, 9-jre8, latest, jre8
 Directory: 9.4-jre8
-GitCommit: bb1a968360166dec223b0eff1a979e1acad8b976
+GitCommit: 6938dbcf3c3f1e433fca63909400670a52f39dfe
 
 Tags: 9.4.7-alpine, 9.4-alpine, 9-alpine, 9.4.7-jre8-alpine, 9.4-jre8-alpine, 9-jre8-alpine, alpine, jre8-alpine
 Directory: 9.4-jre8/alpine
-GitCommit: bb1a968360166dec223b0eff1a979e1acad8b976
+GitCommit: 6938dbcf3c3f1e433fca63909400670a52f39dfe
 
 Tags: 9.3.21, 9.3, 9.3.21-jre8, 9.3-jre8
 Directory: 9.3-jre8
-GitCommit: bb1a968360166dec223b0eff1a979e1acad8b976
+GitCommit: 6938dbcf3c3f1e433fca63909400670a52f39dfe
 
 Tags: 9.3.21-alpine, 9.3-alpine, 9.3.21-jre8-alpine, 9.3-jre8-alpine
 Directory: 9.3-jre8/alpine
-GitCommit: bb1a968360166dec223b0eff1a979e1acad8b976
+GitCommit: 6938dbcf3c3f1e433fca63909400670a52f39dfe
 
 Tags: 9.2.22, 9.2, 9.2.22-jre8, 9.2-jre8
 Directory: 9.2-jre8
-GitCommit: bb1a968360166dec223b0eff1a979e1acad8b976
+GitCommit: 6938dbcf3c3f1e433fca63909400670a52f39dfe
 
 Tags: 9.2.22-jre7, 9.2-jre7, 9-jre7, jre7
 Directory: 9.2-jre7
-GitCommit: bb1a968360166dec223b0eff1a979e1acad8b976
+GitCommit: 6938dbcf3c3f1e433fca63909400670a52f39dfe
+

+ 8 - 0
library/jruby

@@ -4,25 +4,33 @@ GitFetch: refs/heads/master
 GitCommit: 4a733532d5cdffdbafd96be19e2e9862bfe61056
 
 Tags: latest, 9, 9.1, 9.1-jre, 9.1.13, 9.1.13-jre, 9.1.13.0, 9.1.13.0-jre
+Architectures: amd64, i386, arm32v5, arm64v8, ppc64le, s390x
 Directory: 9000/jre
 
 Tags: 9-alpine, 9.1-alpine, 9.1-jre-alpine, 9.1.13-alpine, 9.1.13-jre-alpine, 9.1.13.0-alpine, 9.1.13.0-jre-alpine
+Architectures: amd64, arm32v6, arm64v8, ppc64le, s390x
 Directory: 9000/alpine-jre
 
 Tags: 9.1-jdk, 9.1.13-jdk, 9.1.13.0-jdk
+Architectures: amd64, i386, arm32v5, arm64v8, ppc64le, s390x
 Directory: 9000/jdk
 
 Tags: 9.1-jdk-alpine, 9.1.13-jdk-alpine, 9.1.13.0-jdk-alpine
+Architectures: amd64, arm32v6, arm64v8, ppc64le, s390x
 Directory: 9000/alpine-jdk
 
 Tags: 9-onbuild, 9.1-onbuild, 9.1.13-onbuild, 9.1.13.0-onbuild
+Architectures: amd64, i386, arm32v5, arm64v8, ppc64le, s390x
 Directory: 9000/onbuild
 
 Tags: 1.7, 1.7.27, 1.7-jre, 1.7.27-jre
+Architectures: amd64, i386, arm32v6, arm64v8, ppc64le, s390x
 Directory: 1.7/jre
 
 Tags: 1.7-jdk, 1.7.27-jdk
+Architectures: amd64, i386, arm32v6, arm64v8, ppc64le, s390x
 Directory: 1.7/jdk
 
 Tags: 1.7-onbuild, 1.7.27-onbuild
+Architectures: amd64, i386, arm32v6, arm64v8, ppc64le, s390x
 Directory: 1.7/onbuild

+ 3 - 3
library/julia

@@ -4,6 +4,6 @@ Maintainers: Tianon Gravi <[email protected]> (@tianon),
              Joseph Ferguson <[email protected]> (@yosifkit)
 GitRepo: https://github.com/docker-library/julia.git
 
-Tags: 0.6.0, 0.6, 0, latest
-Architectures: amd64, arm32v7, i386
-GitCommit: 4eff23fd0270ed08c727f1ddb10c497559732c22
+Tags: 0.6.1, 0.6, 0, latest
+Architectures: amd64, arm32v7, arm64v8, i386
+GitCommit: 06148bd09222645c2996f50094d76aeeb9ed4556

+ 4 - 4
library/kapacitor

@@ -3,21 +3,21 @@ Maintainers: Jonathan A. Sternberg <[email protected]> (@jsternberg)
 Tags: 1.2, 1.2.1
 Architectures: amd64, arm32v7, arm64v8
 GitRepo: git://github.com/influxdata/influxdata-docker
-GitCommit: dc4f0480be886393041acf1c3f739f197d45b9c3
+GitCommit: 74b2e90cd794ba5cba219d34876ca6425b069970
 Directory: kapacitor/1.2
 
 Tags: 1.2-alpine, 1.2.1-alpine
 GitRepo: git://github.com/influxdata/influxdata-docker
-GitCommit: dc4f0480be886393041acf1c3f739f197d45b9c3
+GitCommit: 74b2e90cd794ba5cba219d34876ca6425b069970
 Directory: kapacitor/1.2/alpine
 
 Tags: 1.3, 1.3.3, latest
 Architectures: amd64, arm32v7, arm64v8
 GitRepo: git://github.com/influxdata/influxdata-docker
-GitCommit: dc4f0480be886393041acf1c3f739f197d45b9c3
+GitCommit: 74b2e90cd794ba5cba219d34876ca6425b069970
 Directory: kapacitor/1.3
 
 Tags: 1.3-alpine, 1.3.3-alpine, alpine
 GitRepo: git://github.com/influxdata/influxdata-docker
-GitCommit: dc4f0480be886393041acf1c3f739f197d45b9c3
+GitCommit: 74b2e90cd794ba5cba219d34876ca6425b069970
 Directory: kapacitor/1.3/alpine

+ 13 - 0
library/kibana

@@ -0,0 +1,13 @@
+# this file is generated via https://github.com/docker-library/kibana/blob/03f657e02f2fc3f3487dfe98cc98f9870eaaa5c4/generate-stackbrew-library.sh
+
+Maintainers: Tianon Gravi <[email protected]> (@tianon),
+             Joseph Ferguson <[email protected]> (@yosifkit)
+GitRepo: https://github.com/docker-library/kibana.git
+
+Tags: 5.6.4, 5.6, 5, latest
+GitCommit: 8951190befd71bc72c11eb13e6b7e778de38c950
+Directory: 5
+
+Tags: 4.6.6, 4.6, 4
+GitCommit: febc4b766dabfc5a30f04373337cd0a0ec997bb2
+Directory: 4.6

+ 11 - 8
library/kong

@@ -1,17 +1,20 @@
-Maintainers: Mashape Docker Maintainers <support@mashape.com> (@mashape)
-GitRepo: https://github.com/Mashape/docker-kong.git
+Maintainers: Mashape Docker Maintainers <support@konghq.com> (@thekonginc)
+GitRepo: https://github.com/Kong/docker-kong.git
 # needs "Constraints" to match "centos" (which this image is "FROM")
 
-Tags: 0.11-alpine, 0.11.0-alpine
-GitCommit: 55d0b1e894b328483e36b40b178fc080662da773
+Tags: 0.11-alpine, 0.11.1-alpine
+GitCommit: 9f5e82fc6fa947ddb282d5d58242566ee17eb4d0
+Directory: alpine
 
-Tags: 0.11, 0.11.0, latest
-GitCommit: 199530170a710d96145e6e529678ec0ef076a484
+Tags: 0.11, 0.11.1, latest
+GitCommit: 9f5e82fc6fa947ddb282d5d58242566ee17eb4d0
 Constraints: !aufs
+Directory: centos
 
-Tags: 0.10, 0.10.3
-GitCommit: a209825a9a74f9921c71c13ecb6e39a1b8e18aef
+Tags: 0.10, 0.10.4
+GitCommit: 206d0a077068e191454c260ee772d2e5bbb4d050
 Constraints: !aufs
+Directory: legacy
 
 Tags: 0.9, 0.9.9
 GitCommit: b512fa58a9c5a085b21bc5ffb90299cbc4e48eba

+ 21 - 0
library/logstash

@@ -0,0 +1,21 @@
+# this file is generated via https://github.com/docker-library/logstash/blob/ed8e1d89a264eed50f857601c7b4364af66155cd/generate-stackbrew-library.sh
+
+Maintainers: Tianon Gravi <[email protected]> (@tianon),
+             Joseph Ferguson <[email protected]> (@yosifkit)
+GitRepo: https://github.com/docker-library/logstash.git
+
+Tags: 5.6.4, 5.6, 5, latest
+GitCommit: 5a25e180a82989857ee4ef036686523be210f619
+Directory: 5
+
+Tags: 5.6.4-alpine, 5.6-alpine, 5-alpine, alpine
+GitCommit: 5a25e180a82989857ee4ef036686523be210f619
+Directory: 5/alpine
+
+Tags: 2.4.1, 2.4, 2
+GitCommit: 4f425e9008de3d0375d1749d390029808aed8d96
+Directory: 2.4
+
+Tags: 2.4.1-alpine, 2.4-alpine, 2-alpine
+GitCommit: 19330c802e6f198f015c0c4723a6d86ed449d93f
+Directory: 2.4/alpine

+ 9 - 9
library/mariadb

@@ -4,22 +4,22 @@ Maintainers: Tianon Gravi <[email protected]> (@tianon),
              Joseph Ferguson <[email protected]> (@yosifkit)
 GitRepo: https://github.com/docker-library/mariadb.git
 
-Tags: 10.3.1, 10.3
-GitCommit: 8bbe483d5fc132b87063db9d22132b571a778fd4
+Tags: 10.3.2, 10.3
+GitCommit: 754b3987acb85150eae0e0bc92e6dd2edce0cb3d
 Directory: 10.3
 
-Tags: 10.2.9, 10.2, 10, latest
-GitCommit: 8d8f803e38b374fa7c5a524bdbf014365000d319
+Tags: 10.2.10, 10.2, 10, latest
+GitCommit: f50d0a8218602a64806a4eb907b3b5dcc5916981
 Directory: 10.2
 
 Tags: 10.1.28, 10.1
-GitCommit: 6d8fbc8e417ed8f50be812d1e941a164ec3e32f2
+GitCommit: 754b3987acb85150eae0e0bc92e6dd2edce0cb3d
 Directory: 10.1
 
-Tags: 10.0.32, 10.0
-GitCommit: 48182d4da0a078eb05c118a39c28b8b832c1f60b
+Tags: 10.0.33, 10.0
+GitCommit: 1d69a91e641da4a77b3a5868c8a78e36b2fbfbb4
 Directory: 10.0
 
-Tags: 5.5.57, 5.5, 5
-GitCommit: 198f04b24ca6f668357106355b03d38d1f3234bc
+Tags: 5.5.58, 5.5, 5
+GitCommit: 754b3987acb85150eae0e0bc92e6dd2edce0cb3d
 Directory: 5.5

+ 34 - 34
library/maven

@@ -1,62 +1,62 @@
 Maintainers: Carlos Sanchez <[email protected]> (@carlossg)
 GitRepo: https://github.com/carlossg/docker-maven.git
 
-Tags: 3.5.0-jdk-7, 3.5-jdk-7, 3-jdk-7
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 4b6cf057428dec330e39af811b54a6abd000402a
-Directory: jdk-7
-
-Tags: 3.5.0-jdk-7-alpine, 3.5-jdk-7-alpine, 3-jdk-7-alpine
-Architectures: amd64
-GitCommit: bdcedecba28295e7fc91256c9e58b0cc1f69ed57
+Tags: 3.5.2-jdk-7-alpine, 3.5-jdk-7-alpine, 3-jdk-7-alpine
+Architectures: amd64, arm32v6, arm64v8, i386, ppc64le, s390x
+GitCommit: 93d297ed2fc952af8c3638eae78c3d5e7526033f
 Directory: jdk-7-alpine
 
-Tags: 3.5.0-jdk-7-slim, 3.5-jdk-7-slim, 3-jdk-7-slim
+Tags: 3.5.2-jdk-7-slim, 3.5-jdk-7-slim, 3-jdk-7-slim
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: afebe58fedee70782887d8bce0fdf808851593fd
+GitCommit: 93d297ed2fc952af8c3638eae78c3d5e7526033f
 Directory: jdk-7-slim
 
-Tags: 3.5.0-jdk-8, 3.5.0, 3.5-jdk-8, 3.5, 3-jdk-8, 3, latest
+Tags: 3.5.2-jdk-7, 3.5-jdk-7, 3-jdk-7
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 7fe1595b23769f777515ae3beca30003349a5ebb
-Directory: jdk-8
+GitCommit: 93d297ed2fc952af8c3638eae78c3d5e7526033f
+Directory: jdk-7
 
-Tags: 3.5.0-jdk-8-alpine, 3.5.0-alpine, 3.5-jdk-8-alpine, 3.5-alpine, 3-jdk-8-alpine, alpine
-Architectures: amd64
-GitCommit: bdcedecba28295e7fc91256c9e58b0cc1f69ed57
+Tags: 3.5.2-jdk-8-alpine, 3.5.2-alpine, 3.5-jdk-8-alpine, 3.5-alpine, 3-jdk-8-alpine, alpine
+Architectures: amd64, arm32v6, arm64v8, i386, ppc64le, s390x
+GitCommit: 798decbb2f987a14f345c017f8fa3725c2467758
 Directory: jdk-8-alpine
 
-Tags: 3.5.0-jdk-8-slim, 3.5.0-slim, 3.5-jdk-8-slim, 3.5-slim, 3-jdk-8-slim, slim
+Tags: 3.5.2-jdk-8-slim, 3.5.2-slim, 3.5-jdk-8-slim, 3.5-slim, 3-jdk-8-slim, slim
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: afebe58fedee70782887d8bce0fdf808851593fd
+GitCommit: 93d297ed2fc952af8c3638eae78c3d5e7526033f
 Directory: jdk-8-slim
 
-Tags: 3.5.0-jdk-9, 3.5-jdk-9, 3-jdk-9
+Tags: 3.5.2-jdk-8, 3.5.2, 3.5-jdk-8, 3.5, 3-jdk-8, 3, latest
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: dc6d3b87457570ccf1310cc70fba3d3c8fc46139
-Directory: jdk-9
+GitCommit: 93d297ed2fc952af8c3638eae78c3d5e7526033f
+Directory: jdk-8
 
-Tags: 3.5.0-jdk-9-slim, 3.5-jdk-9-slim, 3-jdk-9-slim
+Tags: 3.5.2-jdk-9-slim, 3.5-jdk-9-slim, 3-jdk-9-slim
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: dc6d3b87457570ccf1310cc70fba3d3c8fc46139
+GitCommit: 93d297ed2fc952af8c3638eae78c3d5e7526033f
 Directory: jdk-9-slim
 
-Tags: 3.5.0-ibmjava-8, 3.5.0-ibmjava, 3.5-ibmjava-8, 3.5-ibmjava, 3-ibmjava-8, 3-ibmjava, ibmjava
-Architectures: amd64, i386, ppc64le, s390x
-GitCommit: 4b6cf057428dec330e39af811b54a6abd000402a
-Directory: ibmjava-8
+Tags: 3.5.2-jdk-9, 3.5-jdk-9, 3-jdk-9
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 93d297ed2fc952af8c3638eae78c3d5e7526033f
+Directory: jdk-9
 
-Tags: 3.5.0-ibmjava-8-alpine, 3.5.0-ibmjava-alpine, 3.5-ibmjava-8-alpine, 3.5-ibmjava-alpine, 3-ibmjava-8-alpine, ibmjava-alpine
+Tags: 3.5.2-ibmjava-8-alpine, 3.5.2-ibmjava-alpine, 3.5-ibmjava-8-alpine, 3.5-ibmjava-alpine, 3-ibmjava-8-alpine, ibmjava-alpine
 Architectures: amd64
-GitCommit: bdcedecba28295e7fc91256c9e58b0cc1f69ed57
+GitCommit: 93d297ed2fc952af8c3638eae78c3d5e7526033f
 Directory: ibmjava-8-alpine
 
-Tags: 3.5.0-ibmjava-9, 3.5-ibmjava-9, 3-ibmjava-9
+Tags: 3.5.2-ibmjava-8, 3.5.2-ibmjava, 3.5-ibmjava-8, 3.5-ibmjava, 3-ibmjava-8, 3-ibmjava, ibmjava
 Architectures: amd64, i386, ppc64le, s390x
-GitCommit: 4b6cf057428dec330e39af811b54a6abd000402a
-Directory: ibmjava-9
+GitCommit: 93d297ed2fc952af8c3638eae78c3d5e7526033f
+Directory: ibmjava-8
 
-Tags: 3.5.0-ibmjava-9-alpine, 3.5-ibmjava-9-alpine, 3-ibmjava-9-alpine
+Tags: 3.5.2-ibmjava-9-alpine, 3.5-ibmjava-9-alpine, 3-ibmjava-9-alpine
 Architectures: amd64
-GitCommit: bdcedecba28295e7fc91256c9e58b0cc1f69ed57
+GitCommit: 93d297ed2fc952af8c3638eae78c3d5e7526033f
 Directory: ibmjava-9-alpine
+
+Tags: 3.5.2-ibmjava-9, 3.5-ibmjava-9, 3-ibmjava-9
+Architectures: amd64, i386, ppc64le, s390x
+GitCommit: 93d297ed2fc952af8c3638eae78c3d5e7526033f
+Directory: ibmjava-9

+ 5 - 7
library/mediawiki

@@ -1,13 +1,11 @@
 Maintainers: David Barratt <[email protected]> (@davidbarratt),
-             Ryan Kaldari <[email protected]> (@kaldari)
+             Kunal Mehta <[email protected]> (@legoktm),
+             addshore <[email protected]> (@addshore)
 GitRepo: https://github.com/wikimedia/mediawiki-docker.git
-GitCommit: 4f836fabe384623b9a6d9e43a5d025c267bfe496
+GitCommit: 478224c6f8b51b58c6889e1029c59bd0c39fcab5
 
-Tags: stable, latest, 1.29, 1.29.1
+Tags: stable, latest, 1.29, 1.29.2
 Directory: stable
 
-Tags: legacy, 1.28, 1.28.2
-Directory: legacy
-
-Tags: lts, 1.27, 1.27.3
+Tags: lts, legacy, 1.27, 1.27.4
 Directory: lts

+ 5 - 5
library/memcached

@@ -4,12 +4,12 @@ Maintainers: Tianon Gravi <[email protected]> (@tianon),
              Joseph Ferguson <[email protected]> (@yosifkit)
 GitRepo: https://github.com/docker-library/memcached.git
 
-Tags: 1.5.2, 1.5, 1, latest
+Tags: 1.5.3, 1.5, 1, latest
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 4054fdd2b7e0744078806abec9aa507d0df0815c
+GitCommit: 39fb13c73f938d2eb12633be4dea548f4ea2971f
 Directory: debian
 
-Tags: 1.5.2-alpine, 1.5-alpine, 1-alpine, alpine
-Architectures: amd64
-GitCommit: 4054fdd2b7e0744078806abec9aa507d0df0815c
+Tags: 1.5.3-alpine, 1.5-alpine, 1-alpine, alpine
+Architectures: amd64, arm32v6, arm64v8, i386, ppc64le, s390x
+GitCommit: 39fb13c73f938d2eb12633be4dea548f4ea2971f
 Directory: alpine

+ 6 - 6
library/mongo

@@ -34,18 +34,18 @@ GitCommit: 7b2fe2cd853161fdb6d28d318e9e7968e51d0ee3
 Directory: 3.2/windows/windowsservercore
 Constraints: windowsservercore
 
-Tags: 3.4.9-jessie, 3.4-jessie, 3-jessie, jessie
-SharedTags: 3.4.9, 3.4, 3, latest
+Tags: 3.4.10-jessie, 3.4-jessie, 3-jessie, jessie
+SharedTags: 3.4.10, 3.4, 3, latest
 # see http://repo.mongodb.org/apt/debian/dists/jessie/mongodb-org/3.4/main/
 # (i386 is empty, as is ppc64el)
 Architectures: amd64
-GitCommit: 18081c4daf5ecf72beee4a77343e961e6cf38ecd
+GitCommit: c501968a9c330a773a2bc2c9b67dcd4ebbb58651
 Directory: 3.4
 
-Tags: 3.4.9-windowsservercore, 3.4-windowsservercore, 3-windowsservercore, windowsservercore
-SharedTags: 3.4.9, 3.4, 3, latest
+Tags: 3.4.10-windowsservercore, 3.4-windowsservercore, 3-windowsservercore, windowsservercore
+SharedTags: 3.4.10, 3.4, 3, latest
 Architectures: windows-amd64
-GitCommit: 18081c4daf5ecf72beee4a77343e961e6cf38ecd
+GitCommit: c501968a9c330a773a2bc2c9b67dcd4ebbb58651
 Directory: 3.4/windows/windowsservercore
 Constraints: windowsservercore
 

+ 12 - 7
library/mono

@@ -4,21 +4,26 @@ Maintainers: Jo Shields <[email protected]> (@directhex),
              Alexander Köplinger <[email protected]> (@akoeplinger)
 GitRepo: https://github.com/mono/docker.git
 
-Tags: 5.2.0.224, 5.2.0, 5.2, 5, latest
+Tags: 5.4.1.6, 5.4.1, 5.4, 5, latest
+Architectures: amd64, i386, arm32v7, arm64v8
+GitCommit: c05f965729b45093c1e9534d3e6532984f8091db
+Directory: 5.4.1.6
+
+Tags: 5.4.1.6-slim, 5.4.1-slim, 5.4-slim, 5-slim, slim
+Architectures: amd64, i386, arm32v7, arm64v8
+GitCommit: c05f965729b45093c1e9534d3e6532984f8091db
+Directory: 5.4.1.6/slim
+
+Tags: 5.2.0.224, 5.2.0, 5.2
 Architectures: amd64, i386, arm32v7, arm64v8
 GitCommit: 55b93b6b6b06a2708bf2bdefe8dc2726e28db861
 Directory: 5.2.0.224
 
-Tags: 5.2.0.224-slim, 5.2.0-slim, 5.2-slim, 5-slim, slim
+Tags: 5.2.0.224-slim, 5.2.0-slim, 5.2-slim
 Architectures: amd64, i386, arm32v7, arm64v8
 GitCommit: 55b93b6b6b06a2708bf2bdefe8dc2726e28db861
 Directory: 5.2.0.224/slim
 
-Tags: 5.0.1.1, 5.0.1, 5.0
-Architectures: amd64, i386, arm32v7, arm64v8
-GitCommit: 39b989ea0ef3e787fb75410521217cb7cb7df05e
-Directory: 5.0.1.1
-
 Tags: 4.8.0.524, 4.8.0, 4.8, 4
 Architectures: amd64, i386, arm32v7
 GitCommit: 0d987d93235630e05a14983c7f87500ab33c90da

+ 6 - 6
library/mysql

@@ -8,14 +8,14 @@ Tags: 8.0.3, 8.0, 8
 GitCommit: 86431f073b3d2f963d21e33cb8943f0bdcdf143d
 Directory: 8.0
 
-Tags: 5.7.19, 5.7, 5, latest
-GitCommit: 0590e4efd2b31ec794383f084d419dea9bc752c4
+Tags: 5.7.20, 5.7, 5, latest
+GitCommit: 883703dfb30d9c197e0059a669c4bb64d55f6e0d
 Directory: 5.7
 
-Tags: 5.6.37, 5.6
-GitCommit: 7ee927986b8c0cbfa6cdbb073a0e662bdb62c18a
+Tags: 5.6.38, 5.6
+GitCommit: 883703dfb30d9c197e0059a669c4bb64d55f6e0d
 Directory: 5.6
 
-Tags: 5.5.57, 5.5
-GitCommit: 08b08d88066bc27f82212631e1d3415b61097afe
+Tags: 5.5.58, 5.5
+GitCommit: 41cfbdd89323a1230342038757b5b8f7f2f36b74
 Directory: 5.5

+ 23 - 3
library/nats-streaming

@@ -1,6 +1,26 @@
 Maintainers: Ivan Kozlovic <[email protected]> (@kozlovic)
-
-Tags: 0.5.0, latest
 GitRepo: https://github.com/nats-io/nats-streaming-docker.git
-GitCommit: 3301b7b0e11bfd128eb4ba572fc1fdbfaab8d3e3
+GitCommit: 2f9abaf0830c64e40d22e3a8d4da47b96c666aef
+
+Tags: 0.6.0-linux, linux
+SharedTags: 0.6.0, latest
+Architectures: amd64, arm32v7, arm64v8
+amd64-GitCommit: 2f9abaf0830c64e40d22e3a8d4da47b96c666aef
+amd64-Directory: amd64
+arm32v7-GitCommit: 2f9abaf0830c64e40d22e3a8d4da47b96c666aef
+arm32v7-Directory: arm32v7
+arm64v8-GitCommit: 2f9abaf0830c64e40d22e3a8d4da47b96c666aef
+arm64v8-Directory: arm64v8
+
+Tags: 0.6.0-nanoserver, nanoserver
+SharedTags: 0.6.0, latest
+Architectures: windows-amd64
+windows-amd64-GitCommit: 9596dfac61688686a6f4955624c559cf101301a9
+windows-amd64-Directory: windows/nanoserver
+Constraints: nanoserver
 
+Tags: 0.6.0-windowsservercore, windowsservercore
+Architectures: windows-amd64
+windows-amd64-GitCommit: 9596dfac61688686a6f4955624c559cf101301a9
+windows-amd64-Directory: windows/windowsservercore
+Constraints: windowsservercore

+ 56 - 6
library/neo4j

@@ -9,12 +9,42 @@ Maintainers: Ben Butler-Cole <[email protected]> (@benbc),
              Steven R Baker <[email protected]> (@srbaker),
              Praveena Fernandes <[email protected]> (@praveenag)
 
-Tags: 3.2.5, 3.2, latest
+Tags: 3.3.0, 3.3, latest
+GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
+GitCommit: aa31654ee8544cd544b369d2646cf372086f7b70
+Directory: 3.3.0/community
+
+Tags: 3.3.0-enterprise, 3.3-enterprise, enterprise
+GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
+GitCommit: aa31654ee8544cd544b369d2646cf372086f7b70
+Directory: 3.3.0/enterprise
+
+Tags: 3.2.7, 3.2
+GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
+GitCommit: f058d0c9d47aa6e8f854153242c42d1f28f5d014
+Directory: 3.2.7/community
+
+Tags: 3.2.7-enterprise, 3.2-enterprise
+GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
+GitCommit: f058d0c9d47aa6e8f854153242c42d1f28f5d014
+Directory: 3.2.7/enterprise
+
+Tags: 3.2.6
+GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
+GitCommit: b14561494c0f0851a6e2db38647bfb02d1bd7eb4
+Directory: 3.2.6/community
+
+Tags: 3.2.6-enterprise
+GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
+GitCommit: b14561494c0f0851a6e2db38647bfb02d1bd7eb4
+Directory: 3.2.6/enterprise
+
+Tags: 3.2.5
 GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
 GitCommit: a20b39574373d3e7c0d36d96c70872fcf5325237
 Directory: 3.2.5/community
 
-Tags: 3.2.5-enterprise, 3.2-enterprise, enterprise
+Tags: 3.2.5-enterprise
 GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
 GitCommit: a20b39574373d3e7c0d36d96c70872fcf5325237
 Directory: 3.2.5/enterprise
@@ -59,12 +89,22 @@ GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
 GitCommit: c0364e1bcbc35a536abb93ec88dc3bfc288b23bf
 Directory: 3.2.0/enterprise
 
-Tags: 3.1.6, 3.1
+Tags: 3.1.7, 3.1
+GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
+GitCommit: d9e20fa72e463a1f186de85f06c891477e1b1ca8
+Directory: 3.1.7/community
+
+Tags: 3.1.7-enterprise, 3.1-enterprise
+GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
+GitCommit: d9e20fa72e463a1f186de85f06c891477e1b1ca8
+Directory: 3.1.7/enterprise
+
+Tags: 3.1.6
 GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
 GitCommit: 2c24f14b592903e8fe4e589a5e0dbefc8bddca75
 Directory: 3.1.6/community
 
-Tags: 3.1.6-enterprise, 3.1-enterprise
+Tags: 3.1.6-enterprise
 GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
 GitCommit: 2c24f14b592903e8fe4e589a5e0dbefc8bddca75
 Directory: 3.1.6/enterprise
@@ -129,12 +169,22 @@ GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
 GitCommit: 36ac547bcffcce2c7c0f249b340d062ba08e2598
 Directory: 3.1.0/enterprise
 
-Tags: 3.0.11, 3.0
+Tags: 3.0.12, 3.0
+GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
+GitCommit: bfaedacc24a608bacb845129f6ace0606d4a356a
+Directory: 3.0.12/community
+
+Tags: 3.0.12-enterprise, 3.0-enterprise
+GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
+GitCommit: bfaedacc24a608bacb845129f6ace0606d4a356a
+Directory: 3.0.12/enterprise
+
+Tags: 3.0.11
 GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
 GitCommit: fd5d704a1aa420faabfc2be1cfc4ffd19e79e5db
 Directory: 3.0.11/community
 
-Tags: 3.0.11-enterprise, 3.0-enterprise
+Tags: 3.0.11-enterprise
 GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
 GitCommit: fd5d704a1aa420faabfc2be1cfc4ffd19e79e5db
 Directory: 3.0.11/enterprise

+ 39 - 37
library/neurodebian

@@ -1,55 +1,57 @@
-# maintainer: Yaroslav Halchenko <[email protected]> (@yarikoptic)
+Maintainers: Yaroslav Halchenko <[email protected]> (@yarikoptic)
+GitRepo: https://github.com/neurodebian/dockerfiles.git
+GitCommit: 16393dd2b676c6128a4b9742cb51b9ce9ab7d436
 
-trusty: git://github.com/neurodebian/dockerfiles@ff9c3b42146d774585d860000e580ba7367d8101 dockerfiles/trusty
-nd14.04: git://github.com/neurodebian/dockerfiles@ff9c3b42146d774585d860000e580ba7367d8101 dockerfiles/trusty
+Tags: trusty, nd14.04
+Directory: dockerfiles/trusty
 
-trusty-non-free: git://github.com/neurodebian/dockerfiles@ff9c3b42146d774585d860000e580ba7367d8101 dockerfiles/trusty-non-free
-nd14.04-non-free: git://github.com/neurodebian/dockerfiles@ff9c3b42146d774585d860000e580ba7367d8101 dockerfiles/trusty-non-free
+Tags: trusty-non-free, nd14.04-non-free
+Directory: dockerfiles/trusty-non-free
 
-xenial: git://github.com/neurodebian/dockerfiles@ff9c3b42146d774585d860000e580ba7367d8101 dockerfiles/xenial
-nd16.04: git://github.com/neurodebian/dockerfiles@ff9c3b42146d774585d860000e580ba7367d8101 dockerfiles/xenial
+Tags: xenial, nd16.04
+Directory: dockerfiles/xenial
 
-xenial-non-free: git://github.com/neurodebian/dockerfiles@ff9c3b42146d774585d860000e580ba7367d8101 dockerfiles/xenial-non-free
-nd16.04-non-free: git://github.com/neurodebian/dockerfiles@ff9c3b42146d774585d860000e580ba7367d8101 dockerfiles/xenial-non-free
+Tags: xenial-non-free, nd16.04-non-free
+Directory: dockerfiles/xenial-non-free
 
-zesty: git://github.com/neurodebian/dockerfiles@ff9c3b42146d774585d860000e580ba7367d8101 dockerfiles/zesty
-nd17.04: git://github.com/neurodebian/dockerfiles@ff9c3b42146d774585d860000e580ba7367d8101 dockerfiles/zesty
+Tags: zesty, nd17.04
+Directory: dockerfiles/zesty
 
-zesty-non-free: git://github.com/neurodebian/dockerfiles@ff9c3b42146d774585d860000e580ba7367d8101 dockerfiles/zesty-non-free
-nd17.04-non-free: git://github.com/neurodebian/dockerfiles@ff9c3b42146d774585d860000e580ba7367d8101 dockerfiles/zesty-non-free
+Tags: zesty-non-free, nd17.04-non-free
+Directory: dockerfiles/zesty-non-free
 
-artful: git://github.com/neurodebian/dockerfiles@ff9c3b42146d774585d860000e580ba7367d8101 dockerfiles/artful
-nd17.10: git://github.com/neurodebian/dockerfiles@ff9c3b42146d774585d860000e580ba7367d8101 dockerfiles/artful
+Tags: artful, nd17.10
+Directory: dockerfiles/artful
 
-artful-non-free: git://github.com/neurodebian/dockerfiles@ff9c3b42146d774585d860000e580ba7367d8101 dockerfiles/artful-non-free
-nd17.10-non-free: git://github.com/neurodebian/dockerfiles@ff9c3b42146d774585d860000e580ba7367d8101 dockerfiles/artful-non-free
+Tags: artful-non-free, nd17.10-non-free
+Directory: dockerfiles/artful-non-free
 
-wheezy: git://github.com/neurodebian/dockerfiles@ff9c3b42146d774585d860000e580ba7367d8101 dockerfiles/wheezy
-nd70: git://github.com/neurodebian/dockerfiles@ff9c3b42146d774585d860000e580ba7367d8101 dockerfiles/wheezy
+Tags: wheezy, nd70
+Directory: dockerfiles/wheezy
 
-wheezy-non-free: git://github.com/neurodebian/dockerfiles@ff9c3b42146d774585d860000e580ba7367d8101 dockerfiles/wheezy-non-free
-nd70-non-free: git://github.com/neurodebian/dockerfiles@ff9c3b42146d774585d860000e580ba7367d8101 dockerfiles/wheezy-non-free
+Tags: wheezy-non-free, nd70-non-free
+Directory: dockerfiles/wheezy-non-free
 
-jessie: git://github.com/neurodebian/dockerfiles@ff9c3b42146d774585d860000e580ba7367d8101 dockerfiles/jessie
-nd80: git://github.com/neurodebian/dockerfiles@ff9c3b42146d774585d860000e580ba7367d8101 dockerfiles/jessie
+Tags: jessie, nd80
+Directory: dockerfiles/jessie
 
-jessie-non-free: git://github.com/neurodebian/dockerfiles@ff9c3b42146d774585d860000e580ba7367d8101 dockerfiles/jessie-non-free
-nd80-non-free: git://github.com/neurodebian/dockerfiles@ff9c3b42146d774585d860000e580ba7367d8101 dockerfiles/jessie-non-free
+Tags: jessie-non-free, nd80-non-free
+Directory: dockerfiles/jessie-non-free
 
-stretch: git://github.com/neurodebian/dockerfiles@ff9c3b42146d774585d860000e580ba7367d8101 dockerfiles/stretch
-nd90: git://github.com/neurodebian/dockerfiles@ff9c3b42146d774585d860000e580ba7367d8101 dockerfiles/stretch
+Tags: stretch, nd90, latest
+Directory: dockerfiles/stretch
 
-stretch-non-free: git://github.com/neurodebian/dockerfiles@ff9c3b42146d774585d860000e580ba7367d8101 dockerfiles/stretch-non-free
-nd90-non-free: git://github.com/neurodebian/dockerfiles@ff9c3b42146d774585d860000e580ba7367d8101 dockerfiles/stretch-non-free
+Tags: stretch-non-free, nd90-non-free, non-free
+Directory: dockerfiles/stretch-non-free
 
-buster: git://github.com/neurodebian/dockerfiles@ff9c3b42146d774585d860000e580ba7367d8101 dockerfiles/buster
-nd100: git://github.com/neurodebian/dockerfiles@ff9c3b42146d774585d860000e580ba7367d8101 dockerfiles/buster
+Tags: buster, nd100
+Directory: dockerfiles/buster
 
-buster-non-free: git://github.com/neurodebian/dockerfiles@ff9c3b42146d774585d860000e580ba7367d8101 dockerfiles/buster-non-free
-nd100-non-free: git://github.com/neurodebian/dockerfiles@ff9c3b42146d774585d860000e580ba7367d8101 dockerfiles/buster-non-free
+Tags: buster-non-free, nd100-non-free
+Directory: dockerfiles/buster-non-free
 
-sid: git://github.com/neurodebian/dockerfiles@ff9c3b42146d774585d860000e580ba7367d8101 dockerfiles/sid
-nd: git://github.com/neurodebian/dockerfiles@ff9c3b42146d774585d860000e580ba7367d8101 dockerfiles/sid
+Tags: sid, nd
+Directory: dockerfiles/sid
 
-sid-non-free: git://github.com/neurodebian/dockerfiles@ff9c3b42146d774585d860000e580ba7367d8101 dockerfiles/sid-non-free
-nd-non-free: git://github.com/neurodebian/dockerfiles@ff9c3b42146d774585d860000e580ba7367d8101 dockerfiles/sid-non-free
+Tags: sid-non-free, nd-non-free
+Directory: dockerfiles/sid-non-free

+ 17 - 17
library/nginx

@@ -1,40 +1,40 @@
-# this file is generated via https://github.com/nginxinc/docker-nginx/blob/48a4c531fc4bfa80d4270f20a67e2e958856860c/generate-stackbrew-library.sh
+# this file is generated via https://github.com/nginxinc/docker-nginx/blob/12fbe201aef2ffebba809e223460f5bf3dc9b445/generate-stackbrew-library.sh
 
 Maintainers: NGINX Docker Maintainers <[email protected]> (@nginxinc)
 GitRepo: https://github.com/nginxinc/docker-nginx.git
 
-Tags: 1.13.5, mainline, 1, 1.13, latest
+Tags: 1.13.6, mainline, 1, 1.13, latest
 Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 1d2e2ccae2f6e478f628f4091d8a5c36a122a157
+GitCommit: 3ba04e37d8f9ed7709fd30bf4dc6c36554e578ac
 Directory: mainline/stretch
 
-Tags: 1.13.5-perl, mainline-perl, 1-perl, 1.13-perl, perl
+Tags: 1.13.6-perl, mainline-perl, 1-perl, 1.13-perl, perl
 Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 1d2e2ccae2f6e478f628f4091d8a5c36a122a157
+GitCommit: 3ba04e37d8f9ed7709fd30bf4dc6c36554e578ac
 Directory: mainline/stretch-perl
 
-Tags: 1.13.5-alpine, mainline-alpine, 1-alpine, 1.13-alpine, alpine
-GitCommit: 1d2e2ccae2f6e478f628f4091d8a5c36a122a157
+Tags: 1.13.6-alpine, mainline-alpine, 1-alpine, 1.13-alpine, alpine
+GitCommit: 3ba04e37d8f9ed7709fd30bf4dc6c36554e578ac
 Directory: mainline/alpine
 
-Tags: 1.13.5-alpine-perl, mainline-alpine-perl, 1-alpine-perl, 1.13-alpine-perl, alpine-perl
-GitCommit: 1d2e2ccae2f6e478f628f4091d8a5c36a122a157
+Tags: 1.13.6-alpine-perl, mainline-alpine-perl, 1-alpine-perl, 1.13-alpine-perl, alpine-perl
+GitCommit: 3ba04e37d8f9ed7709fd30bf4dc6c36554e578ac
 Directory: mainline/alpine-perl
 
-Tags: 1.12.1, stable, 1.12
+Tags: 1.12.2, stable, 1.12
 Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 94eb6429613179a2d30a666c30912d5f2e1d5c93
+GitCommit: 72ac2226580ee73c170163dbe6e4436373b6ece9
 Directory: stable/stretch
 
-Tags: 1.12.1-perl, stable-perl, 1.12-perl
+Tags: 1.12.2-perl, stable-perl, 1.12-perl
 Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 94eb6429613179a2d30a666c30912d5f2e1d5c93
+GitCommit: 72ac2226580ee73c170163dbe6e4436373b6ece9
 Directory: stable/stretch-perl
 
-Tags: 1.12.1-alpine, stable-alpine, 1.12-alpine
-GitCommit: 849fed0093112cd9f55491fccd2f861eb9fad5f9
+Tags: 1.12.2-alpine, stable-alpine, 1.12-alpine
+GitCommit: 72ac2226580ee73c170163dbe6e4436373b6ece9
 Directory: stable/alpine
 
-Tags: 1.12.1-alpine-perl, stable-alpine-perl, 1.12-alpine-perl
-GitCommit: 849fed0093112cd9f55491fccd2f861eb9fad5f9
+Tags: 1.12.2-alpine-perl, stable-alpine-perl, 1.12-alpine-perl
+GitCommit: 72ac2226580ee73c170163dbe6e4436373b6ece9
 Directory: stable/alpine-perl

+ 92 - 62
library/node

@@ -1,95 +1,125 @@
-# this file is generated via https://github.com/nodejs/docker-node/blob/c37d5e87fa6d46c0e387f73161b056bbf90b83aa/generate-stackbrew-library.sh
+# this file is generated via https://github.com/nodejs/docker-node/blob/3795fa06ba70e989e47f4ccd7fc3c50ae3b67433/generate-stackbrew-library.sh
 
 Maintainers: The Node.js Docker Team <https://github.com/nodejs/docker-node> (@nodejs)
 GitRepo: https://github.com/nodejs/docker-node.git
 
-Tags: 8.6.0, 8.6, 8, latest
-Architectures: amd64, ppc64le, s390x, arm64v8, arm32v7
-GitCommit: c37d5e87fa6d46c0e387f73161b056bbf90b83aa
-Directory: 8.6
+Tags: 9.1.0, 9.1, 9, latest
+Architectures: amd64, ppc64le, s390x, arm64v8, arm32v7, i386
+GitCommit: 0d53412448be2ab19616d4a1beb817a6b856840b
+Directory: 9.1
 
-Tags: 8.6.0-alpine, 8.6-alpine, 8-alpine, alpine
-Architectures: amd64
-GitCommit: c37d5e87fa6d46c0e387f73161b056bbf90b83aa
-Directory: 8.6/alpine
+Tags: 9.1.0-alpine, 9.1-alpine, 9-alpine, alpine
+Architectures: amd64, ppc64le, s390x, arm64v8, arm32v6, i386
+GitCommit: 23488f3105c40f3c69e36629cfa3df786c27e54a
+Directory: 9.1/alpine
 
-Tags: 8.6.0-onbuild, 8.6-onbuild, 8-onbuild, onbuild
-Architectures: amd64, ppc64le, s390x, arm64v8, arm32v7
-GitCommit: c37d5e87fa6d46c0e387f73161b056bbf90b83aa
-Directory: 8.6/onbuild
+Tags: 9.1.0-onbuild, 9.1-onbuild, 9-onbuild, onbuild
+Architectures: amd64, ppc64le, s390x, arm64v8, arm32v7, i386
+GitCommit: 23488f3105c40f3c69e36629cfa3df786c27e54a
+Directory: 9.1/onbuild
 
-Tags: 8.6.0-slim, 8.6-slim, 8-slim, slim
-Architectures: amd64, ppc64le, s390x, arm64v8, arm32v7
-GitCommit: c37d5e87fa6d46c0e387f73161b056bbf90b83aa
-Directory: 8.6/slim
+Tags: 9.1.0-slim, 9.1-slim, 9-slim, slim
+Architectures: amd64, ppc64le, s390x, arm64v8, arm32v7, i386
+GitCommit: 0d53412448be2ab19616d4a1beb817a6b856840b
+Directory: 9.1/slim
 
-Tags: 8.6.0-stretch, 8.6-stretch, 8-stretch, stretch
-Architectures: amd64, ppc64le, s390x, arm64v8, arm32v7
-GitCommit: c37d5e87fa6d46c0e387f73161b056bbf90b83aa
-Directory: 8.6/stretch
+Tags: 9.1.0-stretch, 9.1-stretch, 9-stretch, stretch
+Architectures: amd64, ppc64le, s390x, arm64v8, arm32v7, i386
+GitCommit: 0d53412448be2ab19616d4a1beb817a6b856840b
+Directory: 9.1/stretch
 
-Tags: 8.6.0-wheezy, 8.6-wheezy, 8-wheezy, wheezy
+Tags: 9.1.0-wheezy, 9.1-wheezy, 9-wheezy, wheezy
+Architectures: amd64
+GitCommit: 0d53412448be2ab19616d4a1beb817a6b856840b
+Directory: 9.1/wheezy
+
+Tags: 8.9.1, 8.9, 8, carbon
+Architectures: amd64, ppc64le, s390x, arm64v8, arm32v7, i386
+GitCommit: 0d53412448be2ab19616d4a1beb817a6b856840b
+Directory: 8.9
+
+Tags: 8.9.1-alpine, 8.9-alpine, 8-alpine, carbon-alpine
+Architectures: amd64, ppc64le, s390x, arm64v8, arm32v6, i386
+GitCommit: d39f0a67e63c27300edf2a54a4bd599332c30089
+Directory: 8.9/alpine
+
+Tags: 8.9.1-onbuild, 8.9-onbuild, 8-onbuild, carbon-onbuild
+Architectures: amd64, ppc64le, s390x, arm64v8, arm32v7, i386
+GitCommit: d39f0a67e63c27300edf2a54a4bd599332c30089
+Directory: 8.9/onbuild
+
+Tags: 8.9.1-slim, 8.9-slim, 8-slim, carbon-slim
+Architectures: amd64, ppc64le, s390x, arm64v8, arm32v7, i386
+GitCommit: 0d53412448be2ab19616d4a1beb817a6b856840b
+Directory: 8.9/slim
+
+Tags: 8.9.1-stretch, 8.9-stretch, 8-stretch, carbon-stretch
+Architectures: amd64, ppc64le, s390x, arm64v8, arm32v7, i386
+GitCommit: 0d53412448be2ab19616d4a1beb817a6b856840b
+Directory: 8.9/stretch
+
+Tags: 8.9.1-wheezy, 8.9-wheezy, 8-wheezy, carbon-wheezy
 Architectures: amd64
-GitCommit: c37d5e87fa6d46c0e387f73161b056bbf90b83aa
-Directory: 8.6/wheezy
+GitCommit: 0d53412448be2ab19616d4a1beb817a6b856840b
+Directory: 8.9/wheezy
 
-Tags: 6.11.4, 6.11, 6, boron
-Architectures: amd64, ppc64le, s390x, arm64v8, arm32v7
-GitCommit: 36585913a2776f7f72afcdbf0d39d54625716916
-Directory: 6.11
+Tags: 6.12.0, 6.12, 6, boron
+Architectures: amd64, ppc64le, s390x, arm64v8, arm32v7, i386
+GitCommit: 0d53412448be2ab19616d4a1beb817a6b856840b
+Directory: 6.12
 
-Tags: 6.11.4-alpine, 6.11-alpine, 6-alpine, boron-alpine
+Tags: 6.12.0-alpine, 6.12-alpine, 6-alpine, boron-alpine
 Architectures: amd64
-GitCommit: 36585913a2776f7f72afcdbf0d39d54625716916
-Directory: 6.11/alpine
+GitCommit: c08b10809d73d5a2de8702fc2fd214315a71bace
+Directory: 6.12/alpine
 
-Tags: 6.11.4-onbuild, 6.11-onbuild, 6-onbuild, boron-onbuild
-Architectures: amd64, ppc64le, s390x, arm64v8, arm32v7
-GitCommit: 36585913a2776f7f72afcdbf0d39d54625716916
-Directory: 6.11/onbuild
+Tags: 6.12.0-onbuild, 6.12-onbuild, 6-onbuild, boron-onbuild
+Architectures: amd64, ppc64le, s390x, arm64v8, arm32v7, i386
+GitCommit: c08b10809d73d5a2de8702fc2fd214315a71bace
+Directory: 6.12/onbuild
 
-Tags: 6.11.4-slim, 6.11-slim, 6-slim, boron-slim
-Architectures: amd64, ppc64le, s390x, arm64v8, arm32v7
-GitCommit: 36585913a2776f7f72afcdbf0d39d54625716916
-Directory: 6.11/slim
+Tags: 6.12.0-slim, 6.12-slim, 6-slim, boron-slim
+Architectures: amd64, ppc64le, s390x, arm64v8, arm32v7, i386
+GitCommit: 0d53412448be2ab19616d4a1beb817a6b856840b
+Directory: 6.12/slim
 
-Tags: 6.11.4-stretch, 6.11-stretch, 6-stretch, boron-stretch
-Architectures: amd64, ppc64le, s390x, arm64v8, arm32v7
-GitCommit: 36585913a2776f7f72afcdbf0d39d54625716916
-Directory: 6.11/stretch
+Tags: 6.12.0-stretch, 6.12-stretch, 6-stretch, boron-stretch
+Architectures: amd64, ppc64le, s390x, arm64v8, arm32v7, i386
+GitCommit: 0d53412448be2ab19616d4a1beb817a6b856840b
+Directory: 6.12/stretch
 
-Tags: 6.11.4-wheezy, 6.11-wheezy, 6-wheezy, boron-wheezy
+Tags: 6.12.0-wheezy, 6.12-wheezy, 6-wheezy, boron-wheezy
 Architectures: amd64
-GitCommit: 36585913a2776f7f72afcdbf0d39d54625716916
-Directory: 6.11/wheezy
+GitCommit: 0d53412448be2ab19616d4a1beb817a6b856840b
+Directory: 6.12/wheezy
 
-Tags: 4.8.4, 4.8, 4, argon
-Architectures: amd64, ppc64le, arm64v8, arm32v7
-GitCommit: b502aa016335c81a586b430328d8fee4897ee440
+Tags: 4.8.6, 4.8, 4, argon
+Architectures: amd64, ppc64le, arm64v8, arm32v7, i386
+GitCommit: 0d53412448be2ab19616d4a1beb817a6b856840b
 Directory: 4.8
 
-Tags: 4.8.4-alpine, 4.8-alpine, 4-alpine, argon-alpine
+Tags: 4.8.6-alpine, 4.8-alpine, 4-alpine, argon-alpine
 Architectures: amd64
-GitCommit: 3ffba881ad5a78d33b8edf888d5406222b60686e
+GitCommit: e5c9a1b6a8e2a176d81e48552ed0a7105246df92
 Directory: 4.8/alpine
 
-Tags: 4.8.4-onbuild, 4.8-onbuild, 4-onbuild, argon-onbuild
-Architectures: amd64, ppc64le, arm64v8, arm32v7
-GitCommit: 3ffba881ad5a78d33b8edf888d5406222b60686e
+Tags: 4.8.6-onbuild, 4.8-onbuild, 4-onbuild, argon-onbuild
+Architectures: amd64, ppc64le, arm64v8, arm32v7, i386
+GitCommit: e5c9a1b6a8e2a176d81e48552ed0a7105246df92
 Directory: 4.8/onbuild
 
-Tags: 4.8.4-slim, 4.8-slim, 4-slim, argon-slim
-Architectures: amd64, ppc64le, arm64v8, arm32v7
-GitCommit: b502aa016335c81a586b430328d8fee4897ee440
+Tags: 4.8.6-slim, 4.8-slim, 4-slim, argon-slim
+Architectures: amd64, ppc64le, arm64v8, arm32v7, i386
+GitCommit: 0d53412448be2ab19616d4a1beb817a6b856840b
 Directory: 4.8/slim
 
-Tags: 4.8.4-stretch, 4.8-stretch, 4-stretch, argon-stretch
-Architectures: amd64, ppc64le, arm64v8, arm32v7
-GitCommit: b502aa016335c81a586b430328d8fee4897ee440
+Tags: 4.8.6-stretch, 4.8-stretch, 4-stretch, argon-stretch
+Architectures: amd64, ppc64le, arm64v8, arm32v7, i386
+GitCommit: 0d53412448be2ab19616d4a1beb817a6b856840b
 Directory: 4.8/stretch
 
-Tags: 4.8.4-wheezy, 4.8-wheezy, 4-wheezy, argon-wheezy
+Tags: 4.8.6-wheezy, 4.8-wheezy, 4-wheezy, argon-wheezy
 Architectures: amd64
-GitCommit: 9c25cbe93f9108fd1e506d14228afe4a3d04108f
+GitCommit: 0d53412448be2ab19616d4a1beb817a6b856840b
 Directory: 4.8/wheezy
 

+ 8 - 8
library/odoo

@@ -1,11 +1,11 @@
-# maintainer: Simon Lejeune <[email protected]> (@sle-odoo)
+# maintainer: Christophe Monniez <[email protected]> (@d-fence)
 
-8.0: git://github.com/odoo/docker@f432264ad15ce8e3326f281394e1900eb9d1c903 8.0
-8: git://github.com/odoo/docker@f432264ad15ce8e3326f281394e1900eb9d1c903 8.0
+9.0: git://github.com/odoo/docker@16d5988408434e4678f3bf6318aabad542dec4ee 9.0
+9: git://github.com/odoo/docker@16d5988408434e4678f3bf6318aabad542dec4ee 9.0
 
-9.0: git://github.com/odoo/docker@f432264ad15ce8e3326f281394e1900eb9d1c903 9.0
-9: git://github.com/odoo/docker@f432264ad15ce8e3326f281394e1900eb9d1c903 9.0
+10.0: git://github.com/odoo/docker@16d5988408434e4678f3bf6318aabad542dec4ee 10.0
+10: git://github.com/odoo/docker@16d5988408434e4678f3bf6318aabad542dec4ee 10.0
 
-10.0: git://github.com/odoo/docker@f432264ad15ce8e3326f281394e1900eb9d1c903 10.0
-10: git://github.com/odoo/docker@f432264ad15ce8e3326f281394e1900eb9d1c903 10.0
-latest: git://github.com/odoo/docker@f432264ad15ce8e3326f281394e1900eb9d1c903 10.0
+11.0: git://github.com/odoo/docker@16d5988408434e4678f3bf6318aabad542dec4ee 11.0
+11: git://github.com/odoo/docker@16d5988408434e4678f3bf6318aabad542dec4ee 11.0
+latest: git://github.com/odoo/docker@16d5988408434e4678f3bf6318aabad542dec4ee 11.0

+ 29 - 29
library/openjdk

@@ -1,4 +1,4 @@
-# this file is generated via https://github.com/docker-library/openjdk/blob/b4f29ba829765552239bd18f272fcdaf09eca259/generate-stackbrew-library.sh
+# this file is generated via https://github.com/docker-library/openjdk/blob/a893fe3cd82757e7bccc0948c88bfee09bd916c3/generate-stackbrew-library.sh
 
 Maintainers: Tianon Gravi <[email protected]> (@tianon),
              Joseph Ferguson <[email protected]> (@yosifkit)
@@ -35,7 +35,7 @@ GitCommit: c68ebcca06c8740939866575cfe39ee4ad84c782
 Directory: 7-jdk/slim
 
 Tags: 7u131-jdk-alpine, 7u131-alpine, 7-jdk-alpine, 7-alpine
-Architectures: amd64
+Architectures: amd64, arm32v6, arm64v8, i386, ppc64le, s390x
 GitCommit: b4f29ba829765552239bd18f272fcdaf09eca259
 Directory: 7-jdk/alpine
 
@@ -50,80 +50,80 @@ GitCommit: c68ebcca06c8740939866575cfe39ee4ad84c782
 Directory: 7-jre/slim
 
 Tags: 7u131-jre-alpine, 7-jre-alpine
-Architectures: amd64
+Architectures: amd64, arm32v6, arm64v8, i386, ppc64le, s390x
 GitCommit: b4f29ba829765552239bd18f272fcdaf09eca259
 Directory: 7-jre/alpine
 
-Tags: 8u141-jdk, 8u141, 8-jdk, 8, jdk, latest
+Tags: 8u151-jdk, 8u151, 8-jdk, 8, jdk, latest
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 8a23a228bda7d2edeb4132fffd2d08c1e1fcf4ac
+GitCommit: a893fe3cd82757e7bccc0948c88bfee09bd916c3
 Directory: 8-jdk
 
-Tags: 8u141-jdk-slim, 8u141-slim, 8-jdk-slim, 8-slim, jdk-slim, slim
+Tags: 8u151-jdk-slim, 8u151-slim, 8-jdk-slim, 8-slim, jdk-slim, slim
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 8a23a228bda7d2edeb4132fffd2d08c1e1fcf4ac
+GitCommit: a893fe3cd82757e7bccc0948c88bfee09bd916c3
 Directory: 8-jdk/slim
 
 Tags: 8u131-jdk-alpine, 8u131-alpine, 8-jdk-alpine, 8-alpine, jdk-alpine, alpine
-Architectures: amd64
+Architectures: amd64, arm32v6, arm64v8, i386, ppc64le, s390x
 GitCommit: b4f29ba829765552239bd18f272fcdaf09eca259
 Directory: 8-jdk/alpine
 
-Tags: 8u141-jdk-windowsservercore, 8u141-windowsservercore, 8-jdk-windowsservercore, 8-windowsservercore, jdk-windowsservercore, windowsservercore
+Tags: 8u151-jdk-windowsservercore, 8u151-windowsservercore, 8-jdk-windowsservercore, 8-windowsservercore, jdk-windowsservercore, windowsservercore
 Architectures: windows-amd64
-GitCommit: 5fb0ba0b6f08e6647a1ba4fbdf8263895b1cf61f
+GitCommit: a893fe3cd82757e7bccc0948c88bfee09bd916c3
 Directory: 8-jdk/windows/windowsservercore
 Constraints: windowsservercore
 
-Tags: 8u141-jdk-nanoserver, 8u141-nanoserver, 8-jdk-nanoserver, 8-nanoserver, jdk-nanoserver, nanoserver
+Tags: 8u151-jdk-nanoserver, 8u151-nanoserver, 8-jdk-nanoserver, 8-nanoserver, jdk-nanoserver, nanoserver
 Architectures: windows-amd64
-GitCommit: 5fb0ba0b6f08e6647a1ba4fbdf8263895b1cf61f
+GitCommit: a893fe3cd82757e7bccc0948c88bfee09bd916c3
 Directory: 8-jdk/windows/nanoserver
 Constraints: nanoserver
 
-Tags: 8u141-jre, 8-jre, jre
+Tags: 8u151-jre, 8-jre, jre
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 80490366d49e6781e9dcb5dad8ebf0fb6ec04000
+GitCommit: a893fe3cd82757e7bccc0948c88bfee09bd916c3
 Directory: 8-jre
 
-Tags: 8u141-jre-slim, 8-jre-slim, jre-slim
+Tags: 8u151-jre-slim, 8-jre-slim, jre-slim
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 8a23a228bda7d2edeb4132fffd2d08c1e1fcf4ac
+GitCommit: a893fe3cd82757e7bccc0948c88bfee09bd916c3
 Directory: 8-jre/slim
 
 Tags: 8u131-jre-alpine, 8-jre-alpine, jre-alpine
-Architectures: amd64
+Architectures: amd64, arm32v6, arm64v8, i386, ppc64le, s390x
 GitCommit: b4f29ba829765552239bd18f272fcdaf09eca259
 Directory: 8-jre/alpine
 
-Tags: 9-b181-jdk, 9-b181, 9-jdk, 9
+Tags: 9.0.1-11-jdk, 9.0.1-11, 9.0.1-jdk, 9.0.1, 9.0-jdk, 9.0, 9-jdk, 9
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 80490366d49e6781e9dcb5dad8ebf0fb6ec04000
+GitCommit: a893fe3cd82757e7bccc0948c88bfee09bd916c3
 Directory: 9-jdk
 
-Tags: 9-b181-jdk-slim, 9-b181-slim, 9-jdk-slim, 9-slim
+Tags: 9.0.1-11-jdk-slim, 9.0.1-11-slim, 9.0.1-jdk-slim, 9.0.1-slim, 9.0-jdk-slim, 9.0-slim, 9-jdk-slim, 9-slim
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 9865ab7ac7d26a1ba05d5eadde059c01873bc12d
+GitCommit: a893fe3cd82757e7bccc0948c88bfee09bd916c3
 Directory: 9-jdk/slim
 
-Tags: 9-b154-jdk-windowsservercore, 9-b154-windowsservercore, 9-jdk-windowsservercore, 9-windowsservercore
+Tags: 9.0.1-jdk-windowsservercore, 9.0.1-windowsservercore, 9.0-jdk-windowsservercore, 9.0-windowsservercore, 9-jdk-windowsservercore, 9-windowsservercore
 Architectures: windows-amd64
-GitCommit: 2493b1043e8581e2c22db2ce4ff0e217457a37ca
+GitCommit: a893fe3cd82757e7bccc0948c88bfee09bd916c3
 Directory: 9-jdk/windows/windowsservercore
 Constraints: windowsservercore
 
-Tags: 9-b154-jdk-nanoserver, 9-b154-nanoserver, 9-jdk-nanoserver, 9-nanoserver
+Tags: 9.0.1-jdk-nanoserver, 9.0.1-nanoserver, 9.0-jdk-nanoserver, 9.0-nanoserver, 9-jdk-nanoserver, 9-nanoserver
 Architectures: windows-amd64
-GitCommit: 2493b1043e8581e2c22db2ce4ff0e217457a37ca
+GitCommit: a893fe3cd82757e7bccc0948c88bfee09bd916c3
 Directory: 9-jdk/windows/nanoserver
 Constraints: nanoserver
 
-Tags: 9-b181-jre, 9-jre
+Tags: 9.0.1-11-jre, 9.0.1-jre, 9.0-jre, 9-jre
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 80490366d49e6781e9dcb5dad8ebf0fb6ec04000
+GitCommit: a893fe3cd82757e7bccc0948c88bfee09bd916c3
 Directory: 9-jre
 
-Tags: 9-b181-jre-slim, 9-jre-slim
+Tags: 9.0.1-11-jre-slim, 9.0.1-jre-slim, 9.0-jre-slim, 9-jre-slim
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 9865ab7ac7d26a1ba05d5eadde059c01873bc12d
+GitCommit: a893fe3cd82757e7bccc0948c88bfee09bd916c3
 Directory: 9-jre/slim

+ 3 - 3
library/percona

@@ -5,13 +5,13 @@ Maintainers: Tianon Gravi <[email protected]> (@tianon),
 GitRepo: https://github.com/docker-library/percona.git
 
 Tags: 5.7.19, 5.7, 5, latest
-GitCommit: bded1be561f9480c248058840644be09d3282e44
+GitCommit: 52abf70205354001f24432c0c677be4a0264ef47
 Directory: 5.7
 
 Tags: 5.6.37, 5.6
-GitCommit: a49009485acc80aee9be0837eef49f0808cd8ac7
+GitCommit: 52abf70205354001f24432c0c677be4a0264ef47
 Directory: 5.6
 
 Tags: 5.5.57, 5.5
-GitCommit: c9d10f11d7b363a322c9b4337e7a0ed6020f928a
+GitCommit: 52abf70205354001f24432c0c677be4a0264ef47
 Directory: 5.5

+ 95 - 95
library/php

@@ -1,145 +1,145 @@
-# this file is generated via https://github.com/docker-library/php/blob/9c17873f3a6e95170d1747b43958f44db3fcf9c4/generate-stackbrew-library.sh
+# this file is generated via https://github.com/docker-library/php/blob/662067f7336bbf238fdffb3aeee4b084a0cf3de7/generate-stackbrew-library.sh
 
 Maintainers: Tianon Gravi <[email protected]> (@tianon),
              Joseph Ferguson <[email protected]> (@yosifkit)
 GitRepo: https://github.com/docker-library/php.git
 
-Tags: 7.2.0RC3-cli, 7.2-rc-cli, rc-cli, 7.2.0RC3, 7.2-rc, rc
+Tags: 7.2.0RC6-cli-stretch, 7.2-rc-cli-stretch, rc-cli-stretch, 7.2.0RC6-stretch, 7.2-rc-stretch, rc-stretch, 7.2.0RC6-cli, 7.2-rc-cli, rc-cli, 7.2.0RC6, 7.2-rc, rc
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le
-GitCommit: 1e6f8ba4901a5f3f02f447fd70d4226193e4f24b
-Directory: 7.2-rc
+GitCommit: d8d798be28c49ced47d772aa899c0a1febabdba3
+Directory: 7.2-rc/stretch/cli
 
-Tags: 7.2.0RC3-alpine, 7.2-rc-alpine, rc-alpine
-Architectures: amd64
-GitCommit: 1e6f8ba4901a5f3f02f447fd70d4226193e4f24b
-Directory: 7.2-rc/alpine
+Tags: 7.2.0RC6-apache-stretch, 7.2-rc-apache-stretch, rc-apache-stretch, 7.2.0RC6-apache, 7.2-rc-apache, rc-apache
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le
+GitCommit: d8d798be28c49ced47d772aa899c0a1febabdba3
+Directory: 7.2-rc/stretch/apache
 
-Tags: 7.2.0RC3-apache, 7.2-rc-apache, rc-apache
+Tags: 7.2.0RC6-fpm-stretch, 7.2-rc-fpm-stretch, rc-fpm-stretch, 7.2.0RC6-fpm, 7.2-rc-fpm, rc-fpm
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le
-GitCommit: 1e6f8ba4901a5f3f02f447fd70d4226193e4f24b
-Directory: 7.2-rc/apache
+GitCommit: d8d798be28c49ced47d772aa899c0a1febabdba3
+Directory: 7.2-rc/stretch/fpm
 
-Tags: 7.2.0RC3-fpm, 7.2-rc-fpm, rc-fpm
+Tags: 7.2.0RC6-zts-stretch, 7.2-rc-zts-stretch, rc-zts-stretch, 7.2.0RC6-zts, 7.2-rc-zts, rc-zts
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le
-GitCommit: 1e6f8ba4901a5f3f02f447fd70d4226193e4f24b
-Directory: 7.2-rc/fpm
+GitCommit: d8d798be28c49ced47d772aa899c0a1febabdba3
+Directory: 7.2-rc/stretch/zts
 
-Tags: 7.2.0RC3-fpm-alpine, 7.2-rc-fpm-alpine, rc-fpm-alpine
-Architectures: amd64
-GitCommit: 1e6f8ba4901a5f3f02f447fd70d4226193e4f24b
-Directory: 7.2-rc/fpm/alpine
+Tags: 7.2.0RC6-cli-alpine3.6, 7.2-rc-cli-alpine3.6, rc-cli-alpine3.6, 7.2.0RC6-alpine3.6, 7.2-rc-alpine3.6, rc-alpine3.6, 7.2.0RC6-cli-alpine, 7.2-rc-cli-alpine, rc-cli-alpine, 7.2.0RC6-alpine, 7.2-rc-alpine, rc-alpine
+Architectures: amd64, arm32v6, arm64v8, i386, ppc64le
+GitCommit: d8d798be28c49ced47d772aa899c0a1febabdba3
+Directory: 7.2-rc/alpine3.6/cli
 
-Tags: 7.2.0RC3-zts, 7.2-rc-zts, rc-zts
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le
-GitCommit: 1e6f8ba4901a5f3f02f447fd70d4226193e4f24b
-Directory: 7.2-rc/zts
+Tags: 7.2.0RC6-fpm-alpine3.6, 7.2-rc-fpm-alpine3.6, rc-fpm-alpine3.6, 7.2.0RC6-fpm-alpine, 7.2-rc-fpm-alpine, rc-fpm-alpine
+Architectures: amd64, arm32v6, arm64v8, i386, ppc64le
+GitCommit: d8d798be28c49ced47d772aa899c0a1febabdba3
+Directory: 7.2-rc/alpine3.6/fpm
 
-Tags: 7.2.0RC3-zts-alpine, 7.2-rc-zts-alpine, rc-zts-alpine
-Architectures: amd64
-GitCommit: 1e6f8ba4901a5f3f02f447fd70d4226193e4f24b
-Directory: 7.2-rc/zts/alpine
+Tags: 7.2.0RC6-zts-alpine3.6, 7.2-rc-zts-alpine3.6, rc-zts-alpine3.6, 7.2.0RC6-zts-alpine, 7.2-rc-zts-alpine, rc-zts-alpine
+Architectures: amd64, arm32v6, arm64v8, i386, ppc64le
+GitCommit: d8d798be28c49ced47d772aa899c0a1febabdba3
+Directory: 7.2-rc/alpine3.6/zts
 
-Tags: 7.1.10-cli, 7.1-cli, 7-cli, cli, 7.1.10, 7.1, 7, latest
+Tags: 7.1.11-cli-jessie, 7.1-cli-jessie, 7-cli-jessie, cli-jessie, 7.1.11-jessie, 7.1-jessie, 7-jessie, jessie, 7.1.11-cli, 7.1-cli, 7-cli, cli, 7.1.11, 7.1, 7, latest
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 4c0766729088fa5c37d46ccd837386f0e91a33ac
-Directory: 7.1
+GitCommit: bfe27759103fa6050601060165409b5b3be06395
+Directory: 7.1/jessie/cli
 
-Tags: 7.1.10-alpine, 7.1-alpine, 7-alpine, alpine
-Architectures: amd64
-GitCommit: 4c0766729088fa5c37d46ccd837386f0e91a33ac
-Directory: 7.1/alpine
+Tags: 7.1.11-apache-jessie, 7.1-apache-jessie, 7-apache-jessie, apache-jessie, 7.1.11-apache, 7.1-apache, 7-apache, apache
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: bfe27759103fa6050601060165409b5b3be06395
+Directory: 7.1/jessie/apache
 
-Tags: 7.1.10-apache, 7.1-apache, 7-apache, apache
+Tags: 7.1.11-fpm-jessie, 7.1-fpm-jessie, 7-fpm-jessie, fpm-jessie, 7.1.11-fpm, 7.1-fpm, 7-fpm, fpm
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 4c0766729088fa5c37d46ccd837386f0e91a33ac
-Directory: 7.1/apache
+GitCommit: bfe27759103fa6050601060165409b5b3be06395
+Directory: 7.1/jessie/fpm
 
-Tags: 7.1.10-fpm, 7.1-fpm, 7-fpm, fpm
+Tags: 7.1.11-zts-jessie, 7.1-zts-jessie, 7-zts-jessie, zts-jessie, 7.1.11-zts, 7.1-zts, 7-zts, zts
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 4c0766729088fa5c37d46ccd837386f0e91a33ac
-Directory: 7.1/fpm
+GitCommit: bfe27759103fa6050601060165409b5b3be06395
+Directory: 7.1/jessie/zts
 
-Tags: 7.1.10-fpm-alpine, 7.1-fpm-alpine, 7-fpm-alpine, fpm-alpine
+Tags: 7.1.11-cli-alpine3.4, 7.1-cli-alpine3.4, 7-cli-alpine3.4, cli-alpine3.4, 7.1.11-alpine3.4, 7.1-alpine3.4, 7-alpine3.4, alpine3.4, 7.1.11-cli-alpine, 7.1-cli-alpine, 7-cli-alpine, cli-alpine, 7.1.11-alpine, 7.1-alpine, 7-alpine, alpine
 Architectures: amd64
-GitCommit: 4c0766729088fa5c37d46ccd837386f0e91a33ac
-Directory: 7.1/fpm/alpine
+GitCommit: 05fe6f9eb601984e5f95057578ce830a21d11716
+Directory: 7.1/alpine3.4/cli
 
-Tags: 7.1.10-zts, 7.1-zts, 7-zts, zts
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 4c0766729088fa5c37d46ccd837386f0e91a33ac
-Directory: 7.1/zts
+Tags: 7.1.11-fpm-alpine3.4, 7.1-fpm-alpine3.4, 7-fpm-alpine3.4, fpm-alpine3.4, 7.1.11-fpm-alpine, 7.1-fpm-alpine, 7-fpm-alpine, fpm-alpine
+Architectures: amd64
+GitCommit: 05fe6f9eb601984e5f95057578ce830a21d11716
+Directory: 7.1/alpine3.4/fpm
 
-Tags: 7.1.10-zts-alpine, 7.1-zts-alpine, 7-zts-alpine, zts-alpine
+Tags: 7.1.11-zts-alpine3.4, 7.1-zts-alpine3.4, 7-zts-alpine3.4, zts-alpine3.4, 7.1.11-zts-alpine, 7.1-zts-alpine, 7-zts-alpine, zts-alpine
 Architectures: amd64
-GitCommit: 4c0766729088fa5c37d46ccd837386f0e91a33ac
-Directory: 7.1/zts/alpine
+GitCommit: 05fe6f9eb601984e5f95057578ce830a21d11716
+Directory: 7.1/alpine3.4/zts
 
-Tags: 7.0.24-cli, 7.0-cli, 7.0.24, 7.0
+Tags: 7.0.25-cli-jessie, 7.0-cli-jessie, 7.0.25-jessie, 7.0-jessie, 7.0.25-cli, 7.0-cli, 7.0.25, 7.0
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 290b7ed9a79dc311b048e3d8a5143ffc9b0d2606
-Directory: 7.0
+GitCommit: bfe27759103fa6050601060165409b5b3be06395
+Directory: 7.0/jessie/cli
 
-Tags: 7.0.24-alpine, 7.0-alpine
-Architectures: amd64
-GitCommit: 290b7ed9a79dc311b048e3d8a5143ffc9b0d2606
-Directory: 7.0/alpine
+Tags: 7.0.25-apache-jessie, 7.0-apache-jessie, 7.0.25-apache, 7.0-apache
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: bfe27759103fa6050601060165409b5b3be06395
+Directory: 7.0/jessie/apache
 
-Tags: 7.0.24-apache, 7.0-apache
+Tags: 7.0.25-fpm-jessie, 7.0-fpm-jessie, 7.0.25-fpm, 7.0-fpm
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 290b7ed9a79dc311b048e3d8a5143ffc9b0d2606
-Directory: 7.0/apache
+GitCommit: bfe27759103fa6050601060165409b5b3be06395
+Directory: 7.0/jessie/fpm
 
-Tags: 7.0.24-fpm, 7.0-fpm
+Tags: 7.0.25-zts-jessie, 7.0-zts-jessie, 7.0.25-zts, 7.0-zts
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 290b7ed9a79dc311b048e3d8a5143ffc9b0d2606
-Directory: 7.0/fpm
+GitCommit: bfe27759103fa6050601060165409b5b3be06395
+Directory: 7.0/jessie/zts
 
-Tags: 7.0.24-fpm-alpine, 7.0-fpm-alpine
+Tags: 7.0.25-cli-alpine3.4, 7.0-cli-alpine3.4, 7.0.25-alpine3.4, 7.0-alpine3.4, 7.0.25-cli-alpine, 7.0-cli-alpine, 7.0.25-alpine, 7.0-alpine
 Architectures: amd64
-GitCommit: 290b7ed9a79dc311b048e3d8a5143ffc9b0d2606
-Directory: 7.0/fpm/alpine
+GitCommit: 89894ff2da4da406d52931f1acebf9a2f349a898
+Directory: 7.0/alpine3.4/cli
 
-Tags: 7.0.24-zts, 7.0-zts
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 290b7ed9a79dc311b048e3d8a5143ffc9b0d2606
-Directory: 7.0/zts
+Tags: 7.0.25-fpm-alpine3.4, 7.0-fpm-alpine3.4, 7.0.25-fpm-alpine, 7.0-fpm-alpine
+Architectures: amd64
+GitCommit: 89894ff2da4da406d52931f1acebf9a2f349a898
+Directory: 7.0/alpine3.4/fpm
 
-Tags: 7.0.24-zts-alpine, 7.0-zts-alpine
+Tags: 7.0.25-zts-alpine3.4, 7.0-zts-alpine3.4, 7.0.25-zts-alpine, 7.0-zts-alpine
 Architectures: amd64
-GitCommit: 290b7ed9a79dc311b048e3d8a5143ffc9b0d2606
-Directory: 7.0/zts/alpine
+GitCommit: 89894ff2da4da406d52931f1acebf9a2f349a898
+Directory: 7.0/alpine3.4/zts
 
-Tags: 5.6.31-cli, 5.6-cli, 5-cli, 5.6.31, 5.6, 5
+Tags: 5.6.32-cli-jessie, 5.6-cli-jessie, 5-cli-jessie, 5.6.32-jessie, 5.6-jessie, 5-jessie, 5.6.32-cli, 5.6-cli, 5-cli, 5.6.32, 5.6, 5
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 511db0eb59337abf2b105e83ce0f0f1401dbe68f
-Directory: 5.6
+GitCommit: bfe27759103fa6050601060165409b5b3be06395
+Directory: 5.6/jessie/cli
 
-Tags: 5.6.31-alpine, 5.6-alpine, 5-alpine
-Architectures: amd64
-GitCommit: fc24121abdce6d74be6d4df6758230b2074d9066
-Directory: 5.6/alpine
+Tags: 5.6.32-apache-jessie, 5.6-apache-jessie, 5-apache-jessie, 5.6.32-apache, 5.6-apache, 5-apache
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: bfe27759103fa6050601060165409b5b3be06395
+Directory: 5.6/jessie/apache
 
-Tags: 5.6.31-apache, 5.6-apache, 5-apache
+Tags: 5.6.32-fpm-jessie, 5.6-fpm-jessie, 5-fpm-jessie, 5.6.32-fpm, 5.6-fpm, 5-fpm
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 511db0eb59337abf2b105e83ce0f0f1401dbe68f
-Directory: 5.6/apache
+GitCommit: bfe27759103fa6050601060165409b5b3be06395
+Directory: 5.6/jessie/fpm
 
-Tags: 5.6.31-fpm, 5.6-fpm, 5-fpm
+Tags: 5.6.32-zts-jessie, 5.6-zts-jessie, 5-zts-jessie, 5.6.32-zts, 5.6-zts, 5-zts
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 511db0eb59337abf2b105e83ce0f0f1401dbe68f
-Directory: 5.6/fpm
+GitCommit: bfe27759103fa6050601060165409b5b3be06395
+Directory: 5.6/jessie/zts
 
-Tags: 5.6.31-fpm-alpine, 5.6-fpm-alpine, 5-fpm-alpine
+Tags: 5.6.32-cli-alpine3.4, 5.6-cli-alpine3.4, 5-cli-alpine3.4, 5.6.32-alpine3.4, 5.6-alpine3.4, 5-alpine3.4, 5.6.32-cli-alpine, 5.6-cli-alpine, 5-cli-alpine, 5.6.32-alpine, 5.6-alpine, 5-alpine
 Architectures: amd64
-GitCommit: fc24121abdce6d74be6d4df6758230b2074d9066
-Directory: 5.6/fpm/alpine
+GitCommit: ec6b6e60b42c283d48775596f722f5250c1f5ca5
+Directory: 5.6/alpine3.4/cli
 
-Tags: 5.6.31-zts, 5.6-zts, 5-zts
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 511db0eb59337abf2b105e83ce0f0f1401dbe68f
-Directory: 5.6/zts
+Tags: 5.6.32-fpm-alpine3.4, 5.6-fpm-alpine3.4, 5-fpm-alpine3.4, 5.6.32-fpm-alpine, 5.6-fpm-alpine, 5-fpm-alpine
+Architectures: amd64
+GitCommit: ec6b6e60b42c283d48775596f722f5250c1f5ca5
+Directory: 5.6/alpine3.4/fpm
 
-Tags: 5.6.31-zts-alpine, 5.6-zts-alpine, 5-zts-alpine
+Tags: 5.6.32-zts-alpine3.4, 5.6-zts-alpine3.4, 5-zts-alpine3.4, 5.6.32-zts-alpine, 5.6-zts-alpine, 5-zts-alpine
 Architectures: amd64
-GitCommit: fc24121abdce6d74be6d4df6758230b2074d9066
-Directory: 5.6/zts/alpine
+GitCommit: ec6b6e60b42c283d48775596f722f5250c1f5ca5
+Directory: 5.6/alpine3.4/zts

+ 4 - 4
library/piwik

@@ -2,10 +2,10 @@
 Maintainers: Pierre Ozoux <[email protected]> (@pierreozoux)
 GitRepo: https://github.com/piwik/docker-piwik.git
 
-Tags: 3.1.1-apache, 3.1-apache, 3-apache, apache, 3.1.1, 3.1, 3, latest
-GitCommit: dddf0af92dc1a1e5c6bfd4ac26b884aaaad56dd7
+Tags: 3.2.0-apache, 3.2-apache, 3-apache, apache, 3.2.0, 3.2, 3, latest
+GitCommit: b5782462cddfd5c5ff7da5e19bb83b901e079781
 Directory: apache
 
-Tags: 3.1.1-fpm, 3.1-fpm, 3-fpm, fpm
-GitCommit: dddf0af92dc1a1e5c6bfd4ac26b884aaaad56dd7
+Tags: 3.2.0-fpm, 3.2-fpm, 3-fpm, fpm
+GitCommit: b5782462cddfd5c5ff7da5e19bb83b901e079781
 Directory: fpm

+ 21 - 21
library/postgres

@@ -4,52 +4,52 @@ Maintainers: Tianon Gravi <[email protected]> (@tianon),
              Joseph Ferguson <[email protected]> (@yosifkit)
 GitRepo: https://github.com/docker-library/postgres.git
 
-Tags: 10.0, 10, latest
+Tags: 10.1, 10, latest
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: f34b7cb79c4209a67b573f3bc4bc7827d69800e1
+GitCommit: 3d0487a6caf77a2f0a66262158ff2719d1c22c94
 Directory: 10
 
-Tags: 10.0-alpine, 10-alpine, alpine
-Architectures: amd64
-GitCommit: 0b0ca18dda787003f567e7e1a51efaf2348d34d7
+Tags: 10.1-alpine, 10-alpine, alpine
+Architectures: amd64, arm32v6, arm64v8, i386, ppc64le, s390x
+GitCommit: 60db3b9da9c3a83057daee618d47864ac271bebf
 Directory: 10/alpine
 
-Tags: 9.6.5, 9.6, 9
+Tags: 9.6.6, 9.6, 9
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: bef8f02d1fe2bb4547280ba609f19abd20230180
+GitCommit: 82e8101ff612b492507f4efc2120963b29f4188d
 Directory: 9.6
 
-Tags: 9.6.5-alpine, 9.6-alpine, 9-alpine
+Tags: 9.6.6-alpine, 9.6-alpine, 9-alpine
 Architectures: amd64
-GitCommit: 1089a8971b43a675109ad886bf1f3b327c067fa1
+GitCommit: 3d152d1a0d08cf52a1392b58243ff3c423588ccc
 Directory: 9.6/alpine
 
-Tags: 9.5.9, 9.5
+Tags: 9.5.10, 9.5
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: bef8f02d1fe2bb4547280ba609f19abd20230180
+GitCommit: b84ddd1619ee3a7f6e318bb9ac33f39818b3b548
 Directory: 9.5
 
-Tags: 9.5.9-alpine, 9.5-alpine
+Tags: 9.5.10-alpine, 9.5-alpine
 Architectures: amd64
-GitCommit: 1089a8971b43a675109ad886bf1f3b327c067fa1
+GitCommit: 5a690fbbe0f256b916a01afee293e8b2dfd3ad8d
 Directory: 9.5/alpine
 
-Tags: 9.4.14, 9.4
+Tags: 9.4.15, 9.4
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: bef8f02d1fe2bb4547280ba609f19abd20230180
+GitCommit: 3001d13fcac68cf9f8b0217eafdad8e83c41907c
 Directory: 9.4
 
-Tags: 9.4.14-alpine, 9.4-alpine
+Tags: 9.4.15-alpine, 9.4-alpine
 Architectures: amd64
-GitCommit: 1089a8971b43a675109ad886bf1f3b327c067fa1
+GitCommit: cd2cafec4e998847fd2b10f08cc3444a2116e6d5
 Directory: 9.4/alpine
 
-Tags: 9.3.19, 9.3
+Tags: 9.3.20, 9.3
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: bef8f02d1fe2bb4547280ba609f19abd20230180
+GitCommit: 4af033ebfe50d33214c32be78c52f2693769fb14
 Directory: 9.3
 
-Tags: 9.3.19-alpine, 9.3-alpine
+Tags: 9.3.20-alpine, 9.3-alpine
 Architectures: amd64
-GitCommit: 1089a8971b43a675109ad886bf1f3b327c067fa1
+GitCommit: 881448bf624ca3f461f7ddd234c198ba23aea1fe
 Directory: 9.3/alpine

+ 42 - 32
library/python

@@ -1,29 +1,29 @@
-# this file is generated via https://github.com/docker-library/python/blob/9fa3365797933bf588ddc6c51befbcd30346c1ed/generate-stackbrew-library.sh
+# this file is generated via https://github.com/docker-library/python/blob/7891fcc63609dfd43ae2e8de13a40e838b5e7608/generate-stackbrew-library.sh
 
 Maintainers: Tianon Gravi <[email protected]> (@tianon),
              Joseph Ferguson <[email protected]> (@yosifkit)
 GitRepo: https://github.com/docker-library/python.git
 
-Tags: 3.7.0a1-stretch, 3.7-rc-stretch, rc-stretch
-SharedTags: 3.7.0a1, 3.7-rc, rc
+Tags: 3.7.0a2-stretch, 3.7-rc-stretch, rc-stretch
+SharedTags: 3.7.0a2, 3.7-rc, rc
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 45685613e1189227b91affba86dfcb2c764d7fa4
+GitCommit: 3f12f511910098f45951111aa5642fd935133afc
 Directory: 3.7-rc/stretch
 
-Tags: 3.7.0a1-slim, 3.7-rc-slim, rc-slim
+Tags: 3.7.0a2-slim-stretch, 3.7-rc-slim-stretch, rc-slim-stretch, 3.7.0a2-slim, 3.7-rc-slim, rc-slim
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 45685613e1189227b91affba86dfcb2c764d7fa4
+GitCommit: a4ce69de053337ec22d7f322cd997398eeba2350
 Directory: 3.7-rc/stretch/slim
 
-Tags: 3.7.0a1-alpine3.6, 3.7-rc-alpine3.6, rc-alpine3.6, 3.7.0a1-alpine, 3.7-rc-alpine, rc-alpine
-Architectures: amd64
-GitCommit: 45685613e1189227b91affba86dfcb2c764d7fa4
+Tags: 3.7.0a2-alpine3.6, 3.7-rc-alpine3.6, rc-alpine3.6, 3.7.0a2-alpine, 3.7-rc-alpine, rc-alpine
+Architectures: amd64, arm32v6, arm64v8, i386, ppc64le, s390x
+GitCommit: 3f12f511910098f45951111aa5642fd935133afc
 Directory: 3.7-rc/alpine3.6
 
-Tags: 3.7.0a1-windowsservercore, 3.7-rc-windowsservercore, rc-windowsservercore
-SharedTags: 3.7.0a1, 3.7-rc, rc
+Tags: 3.7.0a2-windowsservercore, 3.7-rc-windowsservercore, rc-windowsservercore
+SharedTags: 3.7.0a2, 3.7-rc, rc
 Architectures: windows-amd64
-GitCommit: 45685613e1189227b91affba86dfcb2c764d7fa4
+GitCommit: 3f12f511910098f45951111aa5642fd935133afc
 Directory: 3.7-rc/windows/windowsservercore
 Constraints: windowsservercore
 
@@ -32,36 +32,41 @@ Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
 GitCommit: cf179e4a7b442b29d85f521c2b172b89ef04beef
 Directory: 3.6/stretch
 
+Tags: 3.6.3-slim-stretch, 3.6-slim-stretch, 3-slim-stretch, slim-stretch
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: a4ce69de053337ec22d7f322cd997398eeba2350
+Directory: 3.6/stretch/slim
+
 Tags: 3.6.3-jessie, 3.6-jessie, 3-jessie, jessie
 SharedTags: 3.6.3, 3.6, 3, latest
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
 GitCommit: cf179e4a7b442b29d85f521c2b172b89ef04beef
 Directory: 3.6/jessie
 
-Tags: 3.6.3-slim, 3.6-slim, 3-slim, slim
+Tags: 3.6.3-slim-jessie, 3.6-slim-jessie, 3-slim-jessie, slim-jessie, 3.6.3-slim, 3.6-slim, 3-slim, slim
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: cf179e4a7b442b29d85f521c2b172b89ef04beef
+GitCommit: a4ce69de053337ec22d7f322cd997398eeba2350
 Directory: 3.6/jessie/slim
 
-Tags: 3.6.2-onbuild, 3.6-onbuild, 3-onbuild, onbuild
+Tags: 3.6.3-onbuild, 3.6-onbuild, 3-onbuild, onbuild
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
 GitCommit: f12c2df135aef8c3f645d90aae582b2c65dbc3b5
 Directory: 3.6/jessie/onbuild
 
 Tags: 3.6.3-alpine3.6, 3.6-alpine3.6, 3-alpine3.6, alpine3.6
-Architectures: amd64
-GitCommit: cf179e4a7b442b29d85f521c2b172b89ef04beef
+Architectures: amd64, arm32v6, arm64v8, i386, ppc64le, s390x
+GitCommit: 1d59eb2dd813c64891bf554a8ea01754aba25816
 Directory: 3.6/alpine3.6
 
 Tags: 3.6.3-alpine3.4, 3.6-alpine3.4, 3-alpine3.4, alpine3.4, 3.6.3-alpine, 3.6-alpine, 3-alpine, alpine
 Architectures: amd64
-GitCommit: cf179e4a7b442b29d85f521c2b172b89ef04beef
+GitCommit: 1d59eb2dd813c64891bf554a8ea01754aba25816
 Directory: 3.6/alpine3.4
 
 Tags: 3.6.3-windowsservercore, 3.6-windowsservercore, 3-windowsservercore, windowsservercore
 SharedTags: 3.6.3, 3.6, 3, latest
 Architectures: windows-amd64
-GitCommit: cf179e4a7b442b29d85f521c2b172b89ef04beef
+GitCommit: e01eb54f3c70555cf661dd756d529c85fd2cc04f
 Directory: 3.6/windows/windowsservercore
 Constraints: windowsservercore
 
@@ -71,9 +76,9 @@ Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
 GitCommit: 6ebbaa8a56cdf4021c78e87b3872be3861ac072a
 Directory: 3.5/jessie
 
-Tags: 3.5.4-slim, 3.5-slim
+Tags: 3.5.4-slim-jessie, 3.5-slim-jessie, 3.5.4-slim, 3.5-slim
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 45685613e1189227b91affba86dfcb2c764d7fa4
+GitCommit: a4ce69de053337ec22d7f322cd997398eeba2350
 Directory: 3.5/jessie/slim
 
 Tags: 3.5.4-onbuild, 3.5-onbuild
@@ -83,13 +88,13 @@ Directory: 3.5/jessie/onbuild
 
 Tags: 3.5.4-alpine3.4, 3.5-alpine3.4, 3.5.4-alpine, 3.5-alpine
 Architectures: amd64
-GitCommit: 6ebbaa8a56cdf4021c78e87b3872be3861ac072a
+GitCommit: 1d59eb2dd813c64891bf554a8ea01754aba25816
 Directory: 3.5/alpine3.4
 
 Tags: 3.5.4-windowsservercore, 3.5-windowsservercore
 SharedTags: 3.5.4, 3.5
 Architectures: windows-amd64
-GitCommit: 6ebbaa8a56cdf4021c78e87b3872be3861ac072a
+GitCommit: 9524a26b67ebc8ea48ceaaf6750f5f6caf89478e
 Directory: 3.5/windows/windowsservercore
 Constraints: windowsservercore
 
@@ -99,9 +104,9 @@ Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
 GitCommit: 27516b7347b3236a3accd4b2e1242a53fb54d04c
 Directory: 3.4/jessie
 
-Tags: 3.4.7-slim, 3.4-slim
+Tags: 3.4.7-slim-jessie, 3.4-slim-jessie, 3.4.7-slim, 3.4-slim
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 45685613e1189227b91affba86dfcb2c764d7fa4
+GitCommit: a4ce69de053337ec22d7f322cd997398eeba2350
 Directory: 3.4/jessie/slim
 
 Tags: 3.4.7-onbuild, 3.4-onbuild
@@ -116,7 +121,7 @@ Directory: 3.4/wheezy
 
 Tags: 3.4.7-alpine3.4, 3.4-alpine3.4, 3.4.7-alpine, 3.4-alpine
 Architectures: amd64
-GitCommit: 27516b7347b3236a3accd4b2e1242a53fb54d04c
+GitCommit: 1d59eb2dd813c64891bf554a8ea01754aba25816
 Directory: 3.4/alpine3.4
 
 Tags: 2.7.14-stretch, 2.7-stretch, 2-stretch
@@ -124,15 +129,20 @@ Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
 GitCommit: b1512ead24c6b111506a8d4229134a29da240597
 Directory: 2.7/stretch
 
+Tags: 2.7.14-slim-stretch, 2.7-slim-stretch, 2-slim-stretch
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: a4ce69de053337ec22d7f322cd997398eeba2350
+Directory: 2.7/stretch/slim
+
 Tags: 2.7.14-jessie, 2.7-jessie, 2-jessie
 SharedTags: 2.7.14, 2.7, 2
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
 GitCommit: b1512ead24c6b111506a8d4229134a29da240597
 Directory: 2.7/jessie
 
-Tags: 2.7.14-slim, 2.7-slim, 2-slim
+Tags: 2.7.14-slim-jessie, 2.7-slim-jessie, 2-slim-jessie, 2.7.14-slim, 2.7-slim, 2-slim
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: b1512ead24c6b111506a8d4229134a29da240597
+GitCommit: a4ce69de053337ec22d7f322cd997398eeba2350
 Directory: 2.7/jessie/slim
 
 Tags: 2.7.14-onbuild, 2.7-onbuild, 2-onbuild
@@ -146,18 +156,18 @@ GitCommit: b1512ead24c6b111506a8d4229134a29da240597
 Directory: 2.7/wheezy
 
 Tags: 2.7.14-alpine3.6, 2.7-alpine3.6, 2-alpine3.6
-Architectures: amd64
-GitCommit: b1512ead24c6b111506a8d4229134a29da240597
+Architectures: amd64, arm32v6, arm64v8, i386, ppc64le, s390x
+GitCommit: 1d59eb2dd813c64891bf554a8ea01754aba25816
 Directory: 2.7/alpine3.6
 
 Tags: 2.7.14-alpine3.4, 2.7-alpine3.4, 2-alpine3.4, 2.7.14-alpine, 2.7-alpine, 2-alpine
 Architectures: amd64
-GitCommit: b1512ead24c6b111506a8d4229134a29da240597
+GitCommit: 1d59eb2dd813c64891bf554a8ea01754aba25816
 Directory: 2.7/alpine3.4
 
 Tags: 2.7.14-windowsservercore, 2.7-windowsservercore, 2-windowsservercore
 SharedTags: 2.7.14, 2.7, 2
 Architectures: windows-amd64
-GitCommit: b1512ead24c6b111506a8d4229134a29da240597
+GitCommit: 9524a26b67ebc8ea48ceaaf6750f5f6caf89478e
 Directory: 2.7/windows/windowsservercore
 Constraints: windowsservercore

+ 8 - 8
library/rabbitmq

@@ -4,22 +4,22 @@ Maintainers: Tianon Gravi <[email protected]> (@tianon),
              Joseph Ferguson <[email protected]> (@yosifkit)
 GitRepo: https://github.com/docker-library/rabbitmq.git
 
-Tags: 3.6.12, 3.6, 3, latest
+Tags: 3.6.14, 3.6, 3, latest
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: ed9a656804f0f14a6b6b99fc7d71ba1a043854f5
+GitCommit: 28001b529f28ed0d8e8297f8b603a4cc93a846a3
 Directory: 3.6/debian
 
-Tags: 3.6.12-management, 3.6-management, 3-management, management
+Tags: 3.6.14-management, 3.6-management, 3-management, management
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
 GitCommit: 79277042564875d55e4b05a60c65b6eb46651a94
 Directory: 3.6/debian/management
 
-Tags: 3.6.12-alpine, 3.6-alpine, 3-alpine, alpine
-Architectures: amd64
-GitCommit: ed9a656804f0f14a6b6b99fc7d71ba1a043854f5
+Tags: 3.6.14-alpine, 3.6-alpine, 3-alpine, alpine
+Architectures: amd64, arm32v6, arm64v8, i386, ppc64le, s390x
+GitCommit: 2558d958a0ab9c38f58ad616e387063b33bb229c
 Directory: 3.6/alpine
 
-Tags: 3.6.12-management-alpine, 3.6-management-alpine, 3-management-alpine, management-alpine
-Architectures: amd64
+Tags: 3.6.14-management-alpine, 3.6-management-alpine, 3-management-alpine, management-alpine
+Architectures: amd64, arm32v6, arm64v8, i386, ppc64le, s390x
 GitCommit: 79277042564875d55e4b05a60c65b6eb46651a94
 Directory: 3.6/alpine/management

+ 2 - 2
library/rakudo-star

@@ -1,5 +1,5 @@
 # maintainer: Rob Hoelz <robAThoelz.ro> (@hoelzro)
 
-2017.07:  git://github.com/perl6/docker@2cda0c1733b4413d9f3035148e0b0e041bf38ed5
+2017.10:  git://github.com/perl6/docker@1be22e4dea6aefa7d0712a1cb13b2b4d9541f600
 
-latest:  git://github.com/perl6/docker@2cda0c1733b4413d9f3035148e0b0e041bf38ed5
+latest:  git://github.com/perl6/docker@1be22e4dea6aefa7d0712a1cb13b2b4d9541f600

+ 2 - 2
library/rapidoid

@@ -1,5 +1,5 @@
 Maintainers: Nikolche Mihajlovski <[email protected]> (@nmihajlovski)
 GitRepo: https://github.com/rapidoid/docker-rapidoid.git
 
-Tags: 5.4.4, 5.4, 5, latest
-GitCommit: 21292dfd8933021b1e8be562f428d031cf3a1f31
+Tags: 5.4.6, 5.4, 5, latest
+GitCommit: 8fbb45c706fec5b0a015a37c24862127180ae9e9

+ 2 - 2
library/redis

@@ -15,7 +15,7 @@ GitCommit: 99a06c057297421f9ea46934c342a2fc00644c4f
 Directory: 3.2/32bit
 
 Tags: 3.2.11-alpine, 3.2-alpine, 3-alpine
-Architectures: amd64
+Architectures: amd64, arm32v6, arm64v8, i386, ppc64le, s390x
 GitCommit: 99a06c057297421f9ea46934c342a2fc00644c4f
 Directory: 3.2/alpine
 
@@ -30,6 +30,6 @@ GitCommit: 29b44c477011c5450dd89fd41af4c04e0c71e5b2
 Directory: 4.0/32bit
 
 Tags: 4.0.2-alpine, 4.0-alpine, 4-alpine, alpine
-Architectures: amd64
+Architectures: amd64, arm32v6, arm64v8, i386, ppc64le, s390x
 GitCommit: 29b44c477011c5450dd89fd41af4c04e0c71e5b2
 Directory: 4.0/alpine

+ 12 - 12
library/redmine

@@ -4,29 +4,29 @@ Maintainers: Tianon Gravi <[email protected]> (@tianon),
              Joseph Ferguson <[email protected]> (@yosifkit)
 GitRepo: https://github.com/docker-library/redmine.git
 
-Tags: 3.4.2, 3.4, 3, latest
+Tags: 3.4.3, 3.4, 3, latest
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 288c332e8e13d8fad52d37133dcd29421b369d17
+GitCommit: 16b22cf462b639577c55b7086fe7529278d00a94
 Directory: 3.4
 
-Tags: 3.4.2-passenger, 3.4-passenger, 3-passenger, passenger
-GitCommit: 0bb559650d42409350dba74c9ee982049a61117a
+Tags: 3.4.3-passenger, 3.4-passenger, 3-passenger, passenger
+GitCommit: 3ddc488fe71bf80e3b760e9028fd06785b7db9fb
 Directory: 3.4/passenger
 
-Tags: 3.3.4, 3.3
+Tags: 3.3.5, 3.3
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 288c332e8e13d8fad52d37133dcd29421b369d17
+GitCommit: 16b22cf462b639577c55b7086fe7529278d00a94
 Directory: 3.3
 
-Tags: 3.3.4-passenger, 3.3-passenger
-GitCommit: 0bb559650d42409350dba74c9ee982049a61117a
+Tags: 3.3.5-passenger, 3.3-passenger
+GitCommit: 3ddc488fe71bf80e3b760e9028fd06785b7db9fb
 Directory: 3.3/passenger
 
-Tags: 3.2.7, 3.2
+Tags: 3.2.8, 3.2
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 288c332e8e13d8fad52d37133dcd29421b369d17
+GitCommit: 16b22cf462b639577c55b7086fe7529278d00a94
 Directory: 3.2
 
-Tags: 3.2.7-passenger, 3.2-passenger
-GitCommit: 0bb559650d42409350dba74c9ee982049a61117a
+Tags: 3.2.8-passenger, 3.2-passenger
+GitCommit: 3ddc488fe71bf80e3b760e9028fd06785b7db9fb
 Directory: 3.2/passenger

+ 2 - 2
library/rocket.chat

@@ -1,5 +1,5 @@
 Maintainers: Rocket.Chat Image Team <[email protected]> (@RocketChat)
 GitRepo: https://github.com/RocketChat/Docker.Official.Image.git
 
-Tags: 0.58.3, 0.58, 0, latest
-GitCommit: 20710b313fc4e39f8909322d3901e458a63848ad
+Tags: 0.58.4, 0.58, 0, latest
+GitCommit: 5b8ac5413b368022ea3a3fc455fefa875941058e

+ 31 - 10
library/ros

@@ -1,5 +1,3 @@
-# this file is generated via https://github.com/osrf/docker_images/blob/3e8b29c44f02c85b71a156be51c94902d4092929/ros/create_dockerlibrary.py
-
 Maintainers: Tully Foote <[email protected]> (@tfoote)
 GitRepo: https://github.com/osrf/docker_images.git
 
@@ -10,22 +8,22 @@ GitRepo: https://github.com/osrf/docker_images.git
 # Distro: ubuntu:trusty
 
 Tags: indigo-ros-core, indigo-ros-core-trusty
-Architectures: amd64
+Architectures: amd64, arm32v7
 GitCommit: 5399f380af0a7735405a4b6a07c6c40b867563bd
 Directory: ros/indigo/ubuntu/trusty/ros-core
 
 Tags: indigo-ros-base, indigo-ros-base-trusty, indigo
-Architectures: amd64
+Architectures: amd64, arm32v7
 GitCommit: 5399f380af0a7735405a4b6a07c6c40b867563bd
 Directory: ros/indigo/ubuntu/trusty/ros-base
 
 Tags: indigo-robot, indigo-robot-trusty
-Architectures: amd64
+Architectures: amd64, arm32v7
 GitCommit: 5399f380af0a7735405a4b6a07c6c40b867563bd
 Directory: ros/indigo/ubuntu/trusty/robot
 
 Tags: indigo-perception, indigo-perception-trusty
-Architectures: amd64
+Architectures: amd64, arm32v7
 GitCommit: 5399f380af0a7735405a4b6a07c6c40b867563bd
 Directory: ros/indigo/ubuntu/trusty/perception
 
@@ -37,22 +35,22 @@ Directory: ros/indigo/ubuntu/trusty/perception
 # Distro: ubuntu:trusty
 
 Tags: jade-ros-core, jade-ros-core-trusty
-Architectures: amd64
+Architectures: amd64, arm32v7
 GitCommit: dbda2abfbee89ebab4b33bdb1cfaec6dc36a3822
 Directory: ros/jade/ubuntu/trusty/ros-core
 
 Tags: jade-ros-base, jade-ros-base-trusty, jade
-Architectures: amd64
+Architectures: amd64, arm32v7
 GitCommit: dbda2abfbee89ebab4b33bdb1cfaec6dc36a3822
 Directory: ros/jade/ubuntu/trusty/ros-base
 
 Tags: jade-robot, jade-robot-trusty
-Architectures: amd64
+Architectures: amd64, arm32v7
 GitCommit: dbda2abfbee89ebab4b33bdb1cfaec6dc36a3822
 Directory: ros/jade/ubuntu/trusty/robot
 
 Tags: jade-perception, jade-perception-trusty
-Architectures: amd64
+Architectures: amd64, arm32v7
 GitCommit: dbda2abfbee89ebab4b33bdb1cfaec6dc36a3822
 Directory: ros/jade/ubuntu/trusty/perception
 
@@ -133,6 +131,29 @@ Architectures: amd64, arm32v7, arm64v8
 GitCommit: 5399f380af0a7735405a4b6a07c6c40b867563bd
 Directory: ros/lunar/ubuntu/xenial/perception
 
+########################################
+# Distro: ubuntu:zesty
+
+Tags: lunar-ros-core-zesty
+Architectures: amd64
+GitCommit: 4cfa1c7fd7e4f6ec638d1615f12133edbc100731
+Directory: ros/lunar/ubuntu/zesty/ros-core
+
+Tags: lunar-ros-base-zesty
+Architectures: amd64
+GitCommit: 4cfa1c7fd7e4f6ec638d1615f12133edbc100731
+Directory: ros/lunar/ubuntu/zesty/ros-base
+
+Tags: lunar-robot-zesty
+Architectures: amd64
+GitCommit: 4cfa1c7fd7e4f6ec638d1615f12133edbc100731
+Directory: ros/lunar/ubuntu/zesty/robot
+
+Tags: lunar-perception-zesty
+Architectures: amd64
+GitCommit: 4cfa1c7fd7e4f6ec638d1615f12133edbc100731
+Directory: ros/lunar/ubuntu/zesty/perception
+
 ########################################
 # Distro: debian:stretch
 

+ 29 - 14
library/ruby

@@ -1,27 +1,42 @@
-# this file is generated via https://github.com/docker-library/ruby/blob/35eccb65d277077e9589df5b6d1ac7253eefe4e3/generate-stackbrew-library.sh
+# this file is generated via https://github.com/docker-library/ruby/blob/6bd09a6694ddd921b06cc21d829b6affefa96307/generate-stackbrew-library.sh
 
 Maintainers: Tianon Gravi <[email protected]> (@tianon),
              Joseph Ferguson <[email protected]> (@yosifkit)
 GitRepo: https://github.com/docker-library/ruby.git
 
+Tags: 2.5.0-preview1-stretch, 2.5-rc-stretch, rc-stretch, 2.5.0-preview1, 2.5-rc, rc
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 06027e388354d5c61c2a0301a2d31c0301594c9b
+Directory: 2.5-rc/stretch
+
+Tags: 2.5.0-preview1-slim-stretch, 2.5-rc-slim-stretch, rc-slim-stretch, 2.5.0-preview1-slim, 2.5-rc-slim, rc-slim
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 06027e388354d5c61c2a0301a2d31c0301594c9b
+Directory: 2.5-rc/stretch/slim
+
+Tags: 2.5.0-preview1-alpine3.6, 2.5-rc-alpine3.6, rc-alpine3.6, 2.5.0-preview1-alpine, 2.5-rc-alpine, rc-alpine
+Architectures: amd64, arm32v6, arm64v8, i386, ppc64le, s390x
+GitCommit: 06027e388354d5c61c2a0301a2d31c0301594c9b
+Directory: 2.5-rc/alpine3.6
+
 Tags: 2.4.2-stretch, 2.4-stretch, 2-stretch, stretch
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: beb05c8c3c694e4527effe3e3623120486d0e5ed
+GitCommit: 73d3ed6b06738a7457a24fba9024cad303829c0a
 Directory: 2.4/stretch
 
 Tags: 2.4.2-slim-stretch, 2.4-slim-stretch, 2-slim-stretch, slim-stretch
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: beb05c8c3c694e4527effe3e3623120486d0e5ed
+GitCommit: 73d3ed6b06738a7457a24fba9024cad303829c0a
 Directory: 2.4/stretch/slim
 
 Tags: 2.4.2-jessie, 2.4-jessie, 2-jessie, jessie, 2.4.2, 2.4, 2, latest
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: beb05c8c3c694e4527effe3e3623120486d0e5ed
+GitCommit: 73d3ed6b06738a7457a24fba9024cad303829c0a
 Directory: 2.4/jessie
 
 Tags: 2.4.2-slim-jessie, 2.4-slim-jessie, 2-slim-jessie, slim-jessie, 2.4.2-slim, 2.4-slim, 2-slim, slim
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: beb05c8c3c694e4527effe3e3623120486d0e5ed
+GitCommit: 73d3ed6b06738a7457a24fba9024cad303829c0a
 Directory: 2.4/jessie/slim
 
 Tags: 2.4.2-onbuild, 2.4-onbuild, 2-onbuild, onbuild
@@ -30,23 +45,23 @@ GitCommit: a6918175fd506b46bf2d8f899f4faa40e72296fb
 Directory: 2.4/jessie/onbuild
 
 Tags: 2.4.2-alpine3.6, 2.4-alpine3.6, 2-alpine3.6, alpine3.6
-Architectures: amd64
-GitCommit: c9838b69af941637d68bbbaff70fee4402b715cb
+Architectures: amd64, arm32v6, arm64v8, i386, ppc64le, s390x
+GitCommit: 73d3ed6b06738a7457a24fba9024cad303829c0a
 Directory: 2.4/alpine3.6
 
 Tags: 2.4.2-alpine3.4, 2.4-alpine3.4, 2-alpine3.4, alpine3.4, 2.4.2-alpine, 2.4-alpine, 2-alpine, alpine
 Architectures: amd64
-GitCommit: c9838b69af941637d68bbbaff70fee4402b715cb
+GitCommit: 73d3ed6b06738a7457a24fba9024cad303829c0a
 Directory: 2.4/alpine3.4
 
 Tags: 2.3.5-jessie, 2.3-jessie, 2.3.5, 2.3
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 1ec8021cd6a22a1122d35ca68c395a85c093658c
+GitCommit: d3dc5a87e233dd19497cb6a0ce3933cd0340ce32
 Directory: 2.3/jessie
 
 Tags: 2.3.5-slim-jessie, 2.3-slim-jessie, 2.3.5-slim, 2.3-slim
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 1ec8021cd6a22a1122d35ca68c395a85c093658c
+GitCommit: d3dc5a87e233dd19497cb6a0ce3933cd0340ce32
 Directory: 2.3/jessie/slim
 
 Tags: 2.3.5-onbuild, 2.3-onbuild
@@ -56,17 +71,17 @@ Directory: 2.3/jessie/onbuild
 
 Tags: 2.3.5-alpine3.4, 2.3-alpine3.4, 2.3.5-alpine, 2.3-alpine
 Architectures: amd64
-GitCommit: c9838b69af941637d68bbbaff70fee4402b715cb
+GitCommit: d3dc5a87e233dd19497cb6a0ce3933cd0340ce32
 Directory: 2.3/alpine3.4
 
 Tags: 2.2.8-jessie, 2.2-jessie, 2.2.8, 2.2
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: c1f97577cd4f73ae0968f417dd74a1fd7a6f0cce
+GitCommit: 9d6c3fe1348a23bb9903fc1e8ed73b800808dbfe
 Directory: 2.2/jessie
 
 Tags: 2.2.8-slim-jessie, 2.2-slim-jessie, 2.2.8-slim, 2.2-slim
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: c1f97577cd4f73ae0968f417dd74a1fd7a6f0cce
+GitCommit: 9d6c3fe1348a23bb9903fc1e8ed73b800808dbfe
 Directory: 2.2/jessie/slim
 
 Tags: 2.2.8-onbuild, 2.2-onbuild
@@ -76,5 +91,5 @@ Directory: 2.2/jessie/onbuild
 
 Tags: 2.2.8-alpine3.4, 2.2-alpine3.4, 2.2.8-alpine, 2.2-alpine
 Architectures: amd64
-GitCommit: c9838b69af941637d68bbbaff70fee4402b715cb
+GitCommit: 9d6c3fe1348a23bb9903fc1e8ed73b800808dbfe
 Directory: 2.2/alpine3.4

+ 7 - 7
library/rust

@@ -1,14 +1,14 @@
-# this file is generated via https://github.com/rust-lang-nursery/docker-rust/blob/7683fbd450e413543c814eabc013fae38747cdcc/generate-stackbrew-library.sh
+# this file is generated via https://github.com/rust-lang-nursery/docker-rust/blob/6424dba66086036a0cedde6c86c281d892305f95/generate-stackbrew-library.sh
 
 Maintainers: Steven Fackler <[email protected]> (@sfackler)
 GitRepo: https://github.com/rust-lang-nursery/docker-rust.git
 
-Tags: 1.20.0-stretch, 1-stretch, 1.20-stretch, stretch, 1.20.0, 1, 1.20, latest
+Tags: 1.21.0-stretch, 1-stretch, 1.21-stretch, stretch, 1.21.0, 1, 1.21, latest
 Architectures: amd64, arm32v7, arm64v8, i386
-GitCommit: bf30ee63bff0a381ccacdb86436bb7da5dc9c853
-Directory: 1.20.0/stretch
+GitCommit: 6424dba66086036a0cedde6c86c281d892305f95
+Directory: 1.21.0/stretch
 
-Tags: 1.20.0-jessie, 1-jessie, 1.20-jessie, jessie
+Tags: 1.21.0-jessie, 1-jessie, 1.21-jessie, jessie
 Architectures: amd64, arm32v7, arm64v8, i386
-GitCommit: bf30ee63bff0a381ccacdb86436bb7da5dc9c853
-Directory: 1.20.0/jessie
+GitCommit: 6424dba66086036a0cedde6c86c281d892305f95
+Directory: 1.21.0/jessie

+ 11 - 11
library/sentry

@@ -1,20 +1,20 @@
-# this file is generated via https://github.com/getsentry/docker-sentry/blob/5b3a524591bddce5393a574175439171cdcde5e8/generate-stackbrew-library.sh
+# this file is generated via https://github.com/getsentry/docker-sentry/blob/dbfbdb991427d3e2a0d8f1d2698276846176ec40/generate-stackbrew-library.sh
 
 Maintainers: Matt Robenolt <[email protected]> (@mattrobenolt)
 GitRepo: https://github.com/getsentry/docker-sentry.git
 
-Tags: 8.19.0, 8.19
-GitCommit: f7edbbec370da95fe2a2d96e708e732fa74e4900
-Directory: 8.19
-
-Tags: 8.19.0-onbuild, 8.19-onbuild
-GitCommit: f7edbbec370da95fe2a2d96e708e732fa74e4900
-Directory: 8.19/onbuild
-
-Tags: 8.20.0, 8.20, 8, latest
+Tags: 8.20.0, 8.20
 GitCommit: 5b3a524591bddce5393a574175439171cdcde5e8
 Directory: 8.20
 
-Tags: 8.20.0-onbuild, 8.20-onbuild, 8-onbuild, onbuild
+Tags: 8.20.0-onbuild, 8.20-onbuild
 GitCommit: 5b3a524591bddce5393a574175439171cdcde5e8
 Directory: 8.20/onbuild
+
+Tags: 8.21.0, 8.21, 8, latest
+GitCommit: dbfbdb991427d3e2a0d8f1d2698276846176ec40
+Directory: 8.21
+
+Tags: 8.21.0-onbuild, 8.21-onbuild, 8-onbuild, onbuild
+GitCommit: dbfbdb991427d3e2a0d8f1d2698276846176ec40
+Directory: 8.21/onbuild

+ 43 - 28
library/solr

@@ -1,95 +1,110 @@
-# this file is generated via https://github.com/docker-solr/docker-solr/blob/66f9ed9663ce1d4782e9ad977259758ac7795e61/generate-stackbrew-library.sh
+# this file is generated via https://github.com/docker-solr/docker-solr/blob/9fa120b98d29593da8c5c9e2a0c1f890eb16b834/generate-stackbrew-library.sh
 
 Maintainers: Martijn Koster <[email protected]> (@makuk66),
              Shalin Mangar <[email protected]> (@shalinmangar)
 GitRepo: https://github.com/docker-solr/docker-solr.git
 
-Tags: 7.0.0, 7.0, 7, latest
+Tags: 7.1.0, 7.1
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 1b577d7f761f34db1aeec4264d447bb69803b6c8
+GitCommit: cbb8cbc39d29773f2418557c50b255c7bafbf697
+Directory: 7.1
+
+Tags: 7.1.0-alpine, 7.1-alpine
+Architectures: amd64
+GitCommit: 22e4a81546f4763b102beab7833a342beff34cea
+Directory: 7.1/alpine
+
+Tags: 7.1.0-slim, 7.1-slim
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 22e4a81546f4763b102beab7833a342beff34cea
+Directory: 7.1/slim
+
+Tags: 7.0.1, 7.0, 7, latest
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 22e4a81546f4763b102beab7833a342beff34cea
 Directory: 7.0
 
-Tags: 7.0.0-alpine, 7.0-alpine, 7-alpine, alpine
+Tags: 7.0.1-alpine, 7.0-alpine, 7-alpine, alpine
 Architectures: amd64
-GitCommit: 1b577d7f761f34db1aeec4264d447bb69803b6c8
+GitCommit: 22e4a81546f4763b102beab7833a342beff34cea
 Directory: 7.0/alpine
 
-Tags: 7.0.0-slim, 7.0-slim, 7-slim, slim
+Tags: 7.0.1-slim, 7.0-slim, 7-slim, slim
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 1b577d7f761f34db1aeec4264d447bb69803b6c8
+GitCommit: 22e4a81546f4763b102beab7833a342beff34cea
 Directory: 7.0/slim
 
-Tags: 6.6.1, 6.6, 6
+Tags: 6.6.2, 6.6, 6
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 1b577d7f761f34db1aeec4264d447bb69803b6c8
+GitCommit: 22e4a81546f4763b102beab7833a342beff34cea
 Directory: 6.6
 
-Tags: 6.6.1-alpine, 6.6-alpine, 6-alpine
+Tags: 6.6.2-alpine, 6.6-alpine, 6-alpine
 Architectures: amd64
-GitCommit: 1b577d7f761f34db1aeec4264d447bb69803b6c8
+GitCommit: 22e4a81546f4763b102beab7833a342beff34cea
 Directory: 6.6/alpine
 
-Tags: 6.6.1-slim, 6.6-slim, 6-slim
+Tags: 6.6.2-slim, 6.6-slim, 6-slim
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 1b577d7f761f34db1aeec4264d447bb69803b6c8
+GitCommit: 22e4a81546f4763b102beab7833a342beff34cea
 Directory: 6.6/slim
 
 Tags: 6.5.1, 6.5
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 1b577d7f761f34db1aeec4264d447bb69803b6c8
+GitCommit: 22e4a81546f4763b102beab7833a342beff34cea
 Directory: 6.5
 
 Tags: 6.5.1-alpine, 6.5-alpine
 Architectures: amd64
-GitCommit: 1b577d7f761f34db1aeec4264d447bb69803b6c8
+GitCommit: 22e4a81546f4763b102beab7833a342beff34cea
 Directory: 6.5/alpine
 
 Tags: 6.5.1-slim, 6.5-slim
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 1b577d7f761f34db1aeec4264d447bb69803b6c8
+GitCommit: 22e4a81546f4763b102beab7833a342beff34cea
 Directory: 6.5/slim
 
 Tags: 6.4.2, 6.4
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 1b577d7f761f34db1aeec4264d447bb69803b6c8
+GitCommit: cbb8cbc39d29773f2418557c50b255c7bafbf697
 Directory: 6.4
 
 Tags: 6.4.2-alpine, 6.4-alpine
 Architectures: amd64
-GitCommit: 1b577d7f761f34db1aeec4264d447bb69803b6c8
+GitCommit: 22e4a81546f4763b102beab7833a342beff34cea
 Directory: 6.4/alpine
 
 Tags: 6.4.2-slim, 6.4-slim
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 1b577d7f761f34db1aeec4264d447bb69803b6c8
+GitCommit: 22e4a81546f4763b102beab7833a342beff34cea
 Directory: 6.4/slim
 
 Tags: 6.3.0, 6.3
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 1b577d7f761f34db1aeec4264d447bb69803b6c8
+GitCommit: cbb8cbc39d29773f2418557c50b255c7bafbf697
 Directory: 6.3
 
 Tags: 6.3.0-alpine, 6.3-alpine
 Architectures: amd64
-GitCommit: 1b577d7f761f34db1aeec4264d447bb69803b6c8
+GitCommit: cbb8cbc39d29773f2418557c50b255c7bafbf697
 Directory: 6.3/alpine
 
 Tags: 6.3.0-slim, 6.3-slim
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 1b577d7f761f34db1aeec4264d447bb69803b6c8
+GitCommit: cbb8cbc39d29773f2418557c50b255c7bafbf697
 Directory: 6.3/slim
 
-Tags: 5.5.4, 5.5, 5
+Tags: 5.5.5, 5.5, 5
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 1b577d7f761f34db1aeec4264d447bb69803b6c8
+GitCommit: 4ed56419308ecee62149a65db8b4b9ef7fab05c1
 Directory: 5.5
 
-Tags: 5.5.4-alpine, 5.5-alpine, 5-alpine
+Tags: 5.5.5-alpine, 5.5-alpine, 5-alpine
 Architectures: amd64
-GitCommit: 1b577d7f761f34db1aeec4264d447bb69803b6c8
+GitCommit: 4ed56419308ecee62149a65db8b4b9ef7fab05c1
 Directory: 5.5/alpine
 
-Tags: 5.5.4-slim, 5.5-slim, 5-slim
+Tags: 5.5.5-slim, 5.5-slim, 5-slim
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 1b577d7f761f34db1aeec4264d447bb69803b6c8
+GitCommit: 4ed56419308ecee62149a65db8b4b9ef7fab05c1
 Directory: 5.5/slim

+ 6 - 8
library/sonarqube

@@ -1,11 +1,9 @@
 # maintainer: David Gageot <[email protected]> (@dgageot)
 
 
-latest: git://github.com/SonarSource/docker-sonarqube@65090c41e5e8157e656e6a7fd3853f5e09f6eae6 6.5
-6.5: git://github.com/SonarSource/docker-sonarqube@65090c41e5e8157e656e6a7fd3853f5e09f6eae6 6.5
-lts: git://github.com/SonarSource/docker-sonarqube@65090c41e5e8157e656e6a7fd3853f5e09f6eae6 5.6.7
-5.6.7: git://github.com/SonarSource/docker-sonarqube@65090c41e5e8157e656e6a7fd3853f5e09f6eae6 5.6.7
-alpine: git://github.com/SonarSource/docker-sonarqube@65090c41e5e8157e656e6a7fd3853f5e09f6eae6 6.5-alpine
-6.5-alpine: git://github.com/SonarSource/docker-sonarqube@65090c41e5e8157e656e6a7fd3853f5e09f6eae6 6.5-alpine
-lts-alpine: git://github.com/SonarSource/docker-sonarqube@65090c41e5e8157e656e6a7fd3853f5e09f6eae6 5.6.7-alpine
-5.6.7-alpine: git://github.com/SonarSource/docker-sonarqube@65090c41e5e8157e656e6a7fd3853f5e09f6eae6 5.6.7-alpine
+latest: git://github.com/SonarSource/docker-sonarqube@4ea09231a5a1ce4af97dd62c9c9bf30588324f57 6.7
+6.7: git://github.com/SonarSource/docker-sonarqube@4ea09231a5a1ce4af97dd62c9c9bf30588324f57 6.7
+lts: git://github.com/SonarSource/docker-sonarqube@4ea09231a5a1ce4af97dd62c9c9bf30588324f57 6.7
+alpine: git://github.com/SonarSource/docker-sonarqube@4ea09231a5a1ce4af97dd62c9c9bf30588324f57 6.7-alpine
+6.7-alpine: git://github.com/SonarSource/docker-sonarqube@4ea09231a5a1ce4af97dd62c9c9bf30588324f57 6.7-alpine
+lts-alpine: git://github.com/SonarSource/docker-sonarqube@4ea09231a5a1ce4af97dd62c9c9bf30588324f57 6.7-alpine

+ 6 - 7
library/swift

@@ -2,11 +2,10 @@ Maintainers: Haris Amin <[email protected]> (@hamin),
              Thomas Catterall <[email protected]> (@swizzlr)
 GitRepo: https://github.com/swiftdocker/docker-swift.git
 
-Tags: 4.0, 4, latest
-GitCommit: 84d2f69c035204bc2dc077f330deb7a393255a18
+Tags: 4.0.2, 4.0, 4, latest
+GitCommit: 5c83628d4696bca62aec3136a4ee9b854e8d548e
+Directory: 4.0
 
-Tags: 3.1.0, 3.1, 3
-GitCommit: ef9aa534705fc8ab4258c539f6304072ebae9613
-
-Tags: 3.0.2, 3.0
-GitCommit: 94a43272fe6411c12045414cfc797d3c0bcf2823
+Tags: 3.1.1, 3.1, 3
+GitCommit: 5c83628d4696bca62aec3136a4ee9b854e8d548e
+Directory: 3.1

+ 6 - 6
library/swipl

@@ -1,10 +1,10 @@
 Maintainers: Dave Curylo <[email protected]> (@ninjarobot)
 GitRepo: https://github.com/SWI-Prolog/docker-swipl.git
 
-Tags: latest, 7.7.0
-GitCommit: a90c231a9bc888705b72f0fca1f0774897dfba54
-Directory: 7.7.0/stretch
+Tags: latest, 7.7.2
+GitCommit: 7e43714b2b424a54dfef3099c0bc0b27b1e202ef
+Directory: 7.7.2/stretch
 
-Tags: 7.5.15
-GitCommit: 31e2158e7ba2bb2fa9ebff7c0717c476244506bb
-Directory: 7.5.15/stretch
+Tags: stable, 7.6.0
+GitCommit: 96f1963cd93da79eecd6fc7442ab301135a982f5
+Directory: 7.6.0/stretch

+ 6 - 6
library/telegraf

@@ -3,21 +3,21 @@ Maintainers: Jonathan A. Sternberg <[email protected]> (@jsternberg)
 Tags: 1.3, 1.3.5
 Architectures: amd64, arm32v7, arm64v8
 GitRepo: git://github.com/influxdata/influxdata-docker
-GitCommit: e7112839e28c53da8bfefb9f96a46cb92df58cf2
+GitCommit: 74b2e90cd794ba5cba219d34876ca6425b069970
 Directory: telegraf/1.3
 
 Tags: 1.3-alpine, 1.3.5-alpine
 GitRepo: git://github.com/influxdata/influxdata-docker
-GitCommit: e7112839e28c53da8bfefb9f96a46cb92df58cf2
+GitCommit: 74b2e90cd794ba5cba219d34876ca6425b069970
 Directory: telegraf/1.3/alpine
 
-Tags: 1.4, 1.4.1, latest
+Tags: 1.4, 1.4.4, latest
 Architectures: amd64, arm32v7, arm64v8
 GitRepo: git://github.com/influxdata/influxdata-docker
-GitCommit: 143e1a5f30db7928eded3089e2662a577ad5317b
+GitCommit: 74b2e90cd794ba5cba219d34876ca6425b069970
 Directory: telegraf/1.4
 
-Tags: 1.4-alpine, 1.4.1-alpine, alpine
+Tags: 1.4-alpine, 1.4.4-alpine, alpine
 GitRepo: git://github.com/influxdata/influxdata-docker
-GitCommit: 143e1a5f30db7928eded3089e2662a577ad5317b
+GitCommit: 74b2e90cd794ba5cba219d34876ca6425b069970
 Directory: telegraf/1.4/alpine

+ 12 - 12
library/tomcat

@@ -6,60 +6,60 @@ GitRepo: https://github.com/docker-library/tomcat.git
 
 Tags: 7.0.82-jre7, 7.0-jre7, 7-jre7, 7.0.82, 7.0, 7
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 5a78361a9ce7ef48979acbcabe2acd9342d0168a
+GitCommit: 5802aa060091bb2b18aee4f98a83a155540b978a
 Directory: 7/jre7
 
 Tags: 7.0.82-jre7-alpine, 7.0-jre7-alpine, 7-jre7-alpine, 7.0.82-alpine, 7.0-alpine, 7-alpine
-Architectures: amd64
+Architectures: amd64, arm32v6, arm64v8, i386, ppc64le, s390x
 GitCommit: 5a78361a9ce7ef48979acbcabe2acd9342d0168a
 Directory: 7/jre7-alpine
 
 Tags: 7.0.82-jre8, 7.0-jre8, 7-jre8
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 5a78361a9ce7ef48979acbcabe2acd9342d0168a
+GitCommit: 5802aa060091bb2b18aee4f98a83a155540b978a
 Directory: 7/jre8
 
 Tags: 7.0.82-jre8-alpine, 7.0-jre8-alpine, 7-jre8-alpine
-Architectures: amd64
+Architectures: amd64, arm32v6, arm64v8, i386, ppc64le, s390x
 GitCommit: 5a78361a9ce7ef48979acbcabe2acd9342d0168a
 Directory: 7/jre8-alpine
 
 Tags: 8.0.47-jre7, 8.0-jre7, 8.0.47, 8.0
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 5a78361a9ce7ef48979acbcabe2acd9342d0168a
+GitCommit: 1b5b0791e065d9bfdfe84235faf7f77c157ff70d
 Directory: 8.0/jre7
 
 Tags: 8.0.47-jre7-alpine, 8.0-jre7-alpine, 8.0.47-alpine, 8.0-alpine
-Architectures: amd64
+Architectures: amd64, arm32v6, arm64v8, i386, ppc64le, s390x
 GitCommit: 5a78361a9ce7ef48979acbcabe2acd9342d0168a
 Directory: 8.0/jre7-alpine
 
 Tags: 8.0.47-jre8, 8.0-jre8
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 5a78361a9ce7ef48979acbcabe2acd9342d0168a
+GitCommit: 1b5b0791e065d9bfdfe84235faf7f77c157ff70d
 Directory: 8.0/jre8
 
 Tags: 8.0.47-jre8-alpine, 8.0-jre8-alpine
-Architectures: amd64
+Architectures: amd64, arm32v6, arm64v8, i386, ppc64le, s390x
 GitCommit: 5a78361a9ce7ef48979acbcabe2acd9342d0168a
 Directory: 8.0/jre8-alpine
 
 Tags: 8.5.23-jre8, 8.5-jre8, 8-jre8, jre8, 8.5.23, 8.5, 8, latest
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 5a78361a9ce7ef48979acbcabe2acd9342d0168a
+GitCommit: 68f75ec81727e398a223ed55fe50f9a3ff78d83f
 Directory: 8.5/jre8
 
 Tags: 8.5.23-jre8-alpine, 8.5-jre8-alpine, 8-jre8-alpine, jre8-alpine, 8.5.23-alpine, 8.5-alpine, 8-alpine, alpine
-Architectures: amd64
+Architectures: amd64, arm32v6, arm64v8, i386, ppc64le, s390x
 GitCommit: 5a78361a9ce7ef48979acbcabe2acd9342d0168a
 Directory: 8.5/jre8-alpine
 
 Tags: 9.0.1-jre8, 9.0-jre8, 9-jre8, 9.0.1, 9.0, 9
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 5a78361a9ce7ef48979acbcabe2acd9342d0168a
+GitCommit: 4fddd4bc6c1656e34b0da3b374ca0f036b689adb
 Directory: 9.0/jre8
 
 Tags: 9.0.1-jre8-alpine, 9.0-jre8-alpine, 9-jre8-alpine, 9.0.1-alpine, 9.0-alpine, 9-alpine
-Architectures: amd64
+Architectures: amd64, arm32v6, arm64v8, i386, ppc64le, s390x
 GitCommit: 5a78361a9ce7ef48979acbcabe2acd9342d0168a
 Directory: 9.0/jre8-alpine

+ 5 - 15
library/traefik

@@ -1,24 +1,14 @@
 Maintainers: Emile Vauge <[email protected]> (@emilevauge), Vincent Demeester <[email protected]> (@vdemeester), Ludovic Fernandez <[email protected]> (@ldez)
 GitRepo: https://github.com/containous/traefik-library-image.git
 
-Tags: v1.4.0-rc4, 1.4.0-rc4, v1.4, 1.4, roquefort
+Tags: v1.4.3, 1.4.3, v1.4, 1.4, roquefort, latest
 Architectures: amd64, arm64v8, arm32v6
-GitCommit: d807e0f3692209f960bb2567e7890453a190c899
+GitCommit: 9070c532cf6e3b8b00f8fef573636f2b163aa23a
 amd64-Directory: scratch/amd64
 arm32v6-Directory: scratch/arm
 arm64v8-Directory: scratch/arm64
 
-Tags: v1.4.0-rc4-alpine, 1.4.0-rc4-alpine, v1.4-alpine, 1.4-alpine, roquefort-alpine
-GitCommit: d807e0f3692209f960bb2567e7890453a190c899
-Directory: alpine
-
-Tags: v1.3.8, 1.3.8, v1.3, 1.3, raclette, latest
-Architectures: amd64, arm32v6, arm64v8
-GitCommit: cfa3fa48bed342b86b143006e61d9bdf7db07901
-amd64-Directory: scratch/amd64
-arm32v6-Directory: scratch/arm
-arm64v8-Directory: scratch/arm64
-
-Tags: v1.3.8-alpine, 1.3.8-alpine, v1.3-alpine, 1.3-alpine, raclette-alpine, alpine
-GitCommit: cfa3fa48bed342b86b143006e61d9bdf7db07901
+Tags: v1.4.3-alpine, 1.4.3-alpine, v1.4-alpine, 1.4-alpine, roquefort-alpine, alpine
+Architectures: amd64, arm64v8, arm32v6
+GitCommit: 9070c532cf6e3b8b00f8fef573636f2b163aa23a
 Directory: alpine

+ 12 - 12
library/ubuntu

@@ -5,28 +5,28 @@
 
 Maintainers: Tianon Gravi <[email protected]> (@tianon)
 GitRepo: https://github.com/tianon/docker-brew-ubuntu-core.git
-GitCommit: ea95f62628559b4dc13b179cce87f96b83d44238
+GitCommit: 6b4df4acf24368acf03da2cce49b9b9e110aeb30
 # https://github.com/tianon/docker-brew-ubuntu-core/tree/dist-amd64
 amd64-GitFetch: refs/heads/dist-amd64
-amd64-GitCommit: 31ebd22e9e83185d69d50b3492911aedf519dd4a
+amd64-GitCommit: 5fce3945d95630c2fc03c21ef8665d92bd824642
 # https://github.com/tianon/docker-brew-ubuntu-core/tree/dist-arm32v7
 arm32v7-GitFetch: refs/heads/dist-arm32v7
-arm32v7-GitCommit: 68ff892492ebc5538a18e1389b9507c863ceb5d4
+arm32v7-GitCommit: 19a278e8b2f6e62c61bad15154f234326a41d59c
 # https://github.com/tianon/docker-brew-ubuntu-core/tree/dist-arm64v8
 arm64v8-GitFetch: refs/heads/dist-arm64v8
-arm64v8-GitCommit: c8a76539ff92189d2c65d701ed63c89b0645b672
+arm64v8-GitCommit: 3ab01943270a8c32ec0004ddc8b74133bc78af20
 # https://github.com/tianon/docker-brew-ubuntu-core/tree/dist-i386
 i386-GitFetch: refs/heads/dist-i386
-i386-GitCommit: 164247ac403777cf76935cb73aa4229e39fdd4f9
+i386-GitCommit: 37336ff1dcc89ea1876b2437b4aab6836a5b362e
 # https://github.com/tianon/docker-brew-ubuntu-core/tree/dist-ppc64le
 ppc64le-GitFetch: refs/heads/dist-ppc64le
-ppc64le-GitCommit: c559bfa41fd20c29b7172e65da2cf963cc4d33ea
+ppc64le-GitCommit: f3abe18c48ea05f88bf570c3bfdabb470b2e18ec
 # https://github.com/tianon/docker-brew-ubuntu-core/tree/dist-s390x
 s390x-GitFetch: refs/heads/dist-s390x
-s390x-GitCommit: 6914cb94f708702beb3c985c47928c33aecbb7d9
+s390x-GitCommit: 35da86d2a2b4f18073b60ea727a0014626e5c714
 
-# 20170916 (artful)
-Tags: 17.10, artful-20170916, artful, devel
+# 20171019 (artful)
+Tags: 17.10, artful-20171019, artful, rolling, devel
 Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
 Directory: artful
 
@@ -35,12 +35,12 @@ Tags: 14.04, trusty-20170817, trusty
 Architectures: amd64, arm32v7, arm64v8, i386, ppc64le
 Directory: trusty
 
-# 20170915 (xenial)
-Tags: 16.04, xenial-20170915, xenial, latest
+# 20171006 (xenial)
+Tags: 16.04, xenial-20171006, xenial, latest
 Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
 Directory: xenial
 
 # 20170915 (zesty)
-Tags: 17.04, zesty-20170915, zesty, rolling
+Tags: 17.04, zesty-20170915, zesty
 Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
 Directory: zesty

+ 2 - 2
library/vault

@@ -1,4 +1,4 @@
 # maintainer: Jeff Mitchell <[email protected]> (@jefferai)
 
-0.8.3: git://github.com/hashicorp/docker-vault@6e237e86fe245488d54a448b49eaf63d9a4faa71 0.X
-latest: git://github.com/hashicorp/docker-vault@6e237e86fe245488d54a448b49eaf63d9a4faa71 0.X
+0.9.0: git://github.com/hashicorp/docker-vault@06386d17c55d685cc1515aa03d581743a3c8442e 0.X
+latest: git://github.com/hashicorp/docker-vault@06386d17c55d685cc1515aa03d581743a3c8442e 0.X

+ 1 - 1
library/websphere-liberty

@@ -2,7 +2,7 @@ Maintainers: David Currie <[email protected]> (@davidcurrie),
              Jamie Coleman <[email protected]> (@jamiecoleman92),
              Duane Appleby <[email protected]> (@dibbles)
 GitRepo: https://github.com/WASdev/ci.docker.git
-GitCommit: aef4296f9d17a105be94244ee673e6330bdca563
+GitCommit: 0a98d45cc017328873f926a4075445da11800c4b
 Architectures: amd64, i386, ppc64le, s390x
 
 Tags: kernel

+ 24 - 24
library/wordpress

@@ -4,64 +4,64 @@ Maintainers: Tianon Gravi <[email protected]> (@tianon),
              Joseph Ferguson <[email protected]> (@yosifkit)
 GitRepo: https://github.com/docker-library/wordpress.git
 
-Tags: 4.8.2-apache, 4.8-apache, 4-apache, apache, 4.8.2, 4.8, 4, latest, 4.8.2-php5.6-apache, 4.8-php5.6-apache, 4-php5.6-apache, php5.6-apache, 4.8.2-php5.6, 4.8-php5.6, 4-php5.6, php5.6
+Tags: 4.8.3-apache, 4.8-apache, 4-apache, apache, 4.8.3, 4.8, 4, latest, 4.8.3-php5.6-apache, 4.8-php5.6-apache, 4-php5.6-apache, php5.6-apache, 4.8.3-php5.6, 4.8-php5.6, 4-php5.6, php5.6
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 666c5c06d7bc9d02c71fd48a74911248be6f5a5b
+GitCommit: f7acf35a2b49b7a45d71b4c5fc8797042f34d4bd
 Directory: php5.6/apache
 
-Tags: 4.8.2-fpm, 4.8-fpm, 4-fpm, fpm, 4.8.2-php5.6-fpm, 4.8-php5.6-fpm, 4-php5.6-fpm, php5.6-fpm
+Tags: 4.8.3-fpm, 4.8-fpm, 4-fpm, fpm, 4.8.3-php5.6-fpm, 4.8-php5.6-fpm, 4-php5.6-fpm, php5.6-fpm
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 666c5c06d7bc9d02c71fd48a74911248be6f5a5b
+GitCommit: f7acf35a2b49b7a45d71b4c5fc8797042f34d4bd
 Directory: php5.6/fpm
 
-Tags: 4.8.2-fpm-alpine, 4.8-fpm-alpine, 4-fpm-alpine, fpm-alpine, 4.8.2-php5.6-fpm-alpine, 4.8-php5.6-fpm-alpine, 4-php5.6-fpm-alpine, php5.6-fpm-alpine
+Tags: 4.8.3-fpm-alpine, 4.8-fpm-alpine, 4-fpm-alpine, fpm-alpine, 4.8.3-php5.6-fpm-alpine, 4.8-php5.6-fpm-alpine, 4-php5.6-fpm-alpine, php5.6-fpm-alpine
 Architectures: amd64
-GitCommit: e4672ea456ab6abbdbf58fed9d0bd7a6729f63b1
+GitCommit: f7acf35a2b49b7a45d71b4c5fc8797042f34d4bd
 Directory: php5.6/fpm-alpine
 
-Tags: 4.8.2-php7.0-apache, 4.8-php7.0-apache, 4-php7.0-apache, php7.0-apache, 4.8.2-php7.0, 4.8-php7.0, 4-php7.0, php7.0
+Tags: 4.8.3-php7.0-apache, 4.8-php7.0-apache, 4-php7.0-apache, php7.0-apache, 4.8.3-php7.0, 4.8-php7.0, 4-php7.0, php7.0
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 666c5c06d7bc9d02c71fd48a74911248be6f5a5b
+GitCommit: f7acf35a2b49b7a45d71b4c5fc8797042f34d4bd
 Directory: php7.0/apache
 
-Tags: 4.8.2-php7.0-fpm, 4.8-php7.0-fpm, 4-php7.0-fpm, php7.0-fpm
+Tags: 4.8.3-php7.0-fpm, 4.8-php7.0-fpm, 4-php7.0-fpm, php7.0-fpm
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 666c5c06d7bc9d02c71fd48a74911248be6f5a5b
+GitCommit: f7acf35a2b49b7a45d71b4c5fc8797042f34d4bd
 Directory: php7.0/fpm
 
-Tags: 4.8.2-php7.0-fpm-alpine, 4.8-php7.0-fpm-alpine, 4-php7.0-fpm-alpine, php7.0-fpm-alpine
+Tags: 4.8.3-php7.0-fpm-alpine, 4.8-php7.0-fpm-alpine, 4-php7.0-fpm-alpine, php7.0-fpm-alpine
 Architectures: amd64
-GitCommit: e4672ea456ab6abbdbf58fed9d0bd7a6729f63b1
+GitCommit: f7acf35a2b49b7a45d71b4c5fc8797042f34d4bd
 Directory: php7.0/fpm-alpine
 
-Tags: 4.8.2-php7.1-apache, 4.8-php7.1-apache, 4-php7.1-apache, php7.1-apache, 4.8.2-php7.1, 4.8-php7.1, 4-php7.1, php7.1
+Tags: 4.8.3-php7.1-apache, 4.8-php7.1-apache, 4-php7.1-apache, php7.1-apache, 4.8.3-php7.1, 4.8-php7.1, 4-php7.1, php7.1
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 666c5c06d7bc9d02c71fd48a74911248be6f5a5b
+GitCommit: f7acf35a2b49b7a45d71b4c5fc8797042f34d4bd
 Directory: php7.1/apache
 
-Tags: 4.8.2-php7.1-fpm, 4.8-php7.1-fpm, 4-php7.1-fpm, php7.1-fpm
+Tags: 4.8.3-php7.1-fpm, 4.8-php7.1-fpm, 4-php7.1-fpm, php7.1-fpm
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 666c5c06d7bc9d02c71fd48a74911248be6f5a5b
+GitCommit: f7acf35a2b49b7a45d71b4c5fc8797042f34d4bd
 Directory: php7.1/fpm
 
-Tags: 4.8.2-php7.1-fpm-alpine, 4.8-php7.1-fpm-alpine, 4-php7.1-fpm-alpine, php7.1-fpm-alpine
+Tags: 4.8.3-php7.1-fpm-alpine, 4.8-php7.1-fpm-alpine, 4-php7.1-fpm-alpine, php7.1-fpm-alpine
 Architectures: amd64
-GitCommit: e4672ea456ab6abbdbf58fed9d0bd7a6729f63b1
+GitCommit: f7acf35a2b49b7a45d71b4c5fc8797042f34d4bd
 Directory: php7.1/fpm-alpine
 
 # Now, wp-cli variants (which do _not_ include WordPress, so no WordPress version number -- only wp-cli version)
 
-Tags: cli-1.3.0, cli-1.3, cli-1, cli, cli-1.3.0-php5.6, cli-1.3-php5.6, cli-1-php5.6, cli-php5.6
+Tags: cli-1.4.1, cli-1.4, cli-1, cli, cli-1.4.1-php5.6, cli-1.4-php5.6, cli-1-php5.6, cli-php5.6
 Architectures: amd64
-GitCommit: e4672ea456ab6abbdbf58fed9d0bd7a6729f63b1
+GitCommit: e3c8cccbe1bec9e59fc82f7e743e4c1665a9e22d
 Directory: php5.6/cli
 
-Tags: cli-1.3.0-php7.0, cli-1.3-php7.0, cli-1-php7.0, cli-php7.0
+Tags: cli-1.4.1-php7.0, cli-1.4-php7.0, cli-1-php7.0, cli-php7.0
 Architectures: amd64
-GitCommit: e4672ea456ab6abbdbf58fed9d0bd7a6729f63b1
+GitCommit: e3c8cccbe1bec9e59fc82f7e743e4c1665a9e22d
 Directory: php7.0/cli
 
-Tags: cli-1.3.0-php7.1, cli-1.3-php7.1, cli-1-php7.1, cli-php7.1
+Tags: cli-1.4.1-php7.1, cli-1.4-php7.1, cli-1-php7.1, cli-php7.1
 Architectures: amd64
-GitCommit: e4672ea456ab6abbdbf58fed9d0bd7a6729f63b1
+GitCommit: e3c8cccbe1bec9e59fc82f7e743e4c1665a9e22d
 Directory: php7.1/cli

+ 4 - 4
library/xwiki

@@ -5,14 +5,14 @@ Tags: 8, 8.4, 8.4.5, 8-mysql-tomcat, mysql-tomcat, lts-mysql-tomcat, lts-mysql,
 GitCommit: fbc0fe3cbc07119c45ae8ea97c7e021d41e89b0a
 Directory: 8/mysql-tomcat
 
-Tags: 9, 9.8, 9-mysql-tomcat, stable-mysql-tomcat, stable-mysql, stable
-GitCommit: 02e12b746e3029ab4edf0ecedb2d4a1fe3f623c8
+Tags: 9, 9.9, 9-mysql-tomcat, stable-mysql-tomcat, stable-mysql, stable
+GitCommit: ed8536e2861198c2052f54634ada97723239f5e6
 Directory: 9/mysql-tomcat
 
 Tags: 8-postgres-tomcat, 8.4-postgres-tomcat, 8.4.5-postgres-tomcat, postgres-tomcat, lts-postgres-tomcat, lts-postgres
 GitCommit: fbc0fe3cbc07119c45ae8ea97c7e021d41e89b0a
 Directory: 8/postgres-tomcat
 
-Tags: 9-postgres-tomcat, 9.8-postgres-tomcat, stable-postgres-tomcat, stable-postgres
-GitCommit: 02e12b746e3029ab4edf0ecedb2d4a1fe3f623c8
+Tags: 9-postgres-tomcat, 9.9-postgres-tomcat, stable-postgres-tomcat, stable-postgres
+GitCommit: ed8536e2861198c2052f54634ada97723239f5e6
 Directory: 9/postgres-tomcat

+ 11 - 4
library/zookeeper

@@ -2,9 +2,16 @@ Maintainers: Elisey Zanko <[email protected]> (@31z4)
 GitRepo: https://github.com/31z4/zookeeper-docker.git
 
 Tags: 3.3.6, 3.3
-GitCommit: 9f00dd78dcd67baa9b57449329fcbd4744948326
+Architectures: amd64, arm32v6, arm64v8, i386, ppc64le, s390x
+GitCommit: d5d320f94212691bd6e60326e45c152ac6784210
 Directory: 3.3.6
 
-Tags: 3.4.10, 3.4, latest
-GitCommit: 9f00dd78dcd67baa9b57449329fcbd4744948326
-Directory: 3.4.10
+Tags: 3.4.11, 3.4, latest
+Architectures: amd64, arm32v6, arm64v8, i386, ppc64le, s390x
+GitCommit: af9250c7208973b74ed0ef6ca61052bdf853ce20
+Directory: 3.4.11
+
+Tags: 3.5.3-beta, 3.5
+Architectures: amd64, arm32v6, arm64v8, i386, ppc64le, s390x
+GitCommit: d5d320f94212691bd6e60326e45c152ac6784210
+Directory: 3.5.3-beta

+ 10 - 2
test-pr.sh

@@ -83,10 +83,18 @@ if [ -z "$BASHBREW_SECOND_STAGE" ]; then
 		--user "$(id -u)":"$(id -g)"
 		$(id -G | xargs -n1 echo --group-add)
 
-		-e BASHBREW_DEBUG
 		-e BASHBREW_SECOND_STAGE=1
 	)
 
+	for e in "${!BASHBREW_@}"; do
+		case "$e" in
+			BASHBREW_SECOND_STAGE|BASHBREW_CACHE|BASHBREW_LIBRARY) ;;
+			*)
+				args+=( -e "$e" )
+				;;
+		esac
+	done
+
 	cmd=( ./test-pr.sh "$pull" "$@" )
 
 	if [ -t 1 ]; then
@@ -152,7 +160,7 @@ IFS=$'\n'
 files=( $(bashbrew list --repos --uniq --build-order "${files[@]}") )
 unset IFS
 
-echo 'Build test of' '#'"$pull"';' "$commit" '(`'"$(join '`, `' "${files[@]}")"'`):'
+echo 'Build test of' '#'"$pull"';' "$commit"';' '`'"${BASHBREW_ARCH:-amd64}"'`' '(`'"$(join '`, `' "${files[@]}")"'`):'
 declare -A failedBuild=() failedTests=()
 for img in "${files[@]}"; do
 	IFS=$'\n'

+ 4 - 0
test/config.sh

@@ -162,6 +162,7 @@ imageTests+=(
 		python-sqlite3
 	'
 	[rabbitmq]='
+		rabbitmq-basics
 	'
 	[r-base]='
 	'
@@ -209,6 +210,9 @@ imageTests+=(
 	[wordpress:fpm]='
 		wordpress-fpm-run
 	'
+	[zookeeper]='
+		zookeeper-basics
+	'
 # example onbuild
 #	[python:onbuild]='
 #		py-onbuild

+ 1 - 1
test/run.sh

@@ -105,7 +105,7 @@ for dockerImage in "$@"; do
 			# ONCE ONBUILD, ALWAYS ONBUILD
 			variant='onbuild'
 			;;
-		*fpm-alpine)
+		*fpm-*)
 			# lolPHP
 			variant='fpm'
 			;;

+ 1 - 1
test/tests/golang-hello-world/run.sh

@@ -7,7 +7,7 @@ image="$1"
 
 if [[ "${image##*/}" == gcc:4* ]]; then
 	echo >&2 'warning: gcc 4.x does not support Go'
-	cat "$dir/expected-std-out.txt" # cheaters gunna chea
+	cat "$dir/expected-std-out.txt" # cheaters gunna cheat
 	exit
 fi
 

+ 3 - 3
test/tests/python-hy/container.sh

@@ -3,8 +3,8 @@ set -e
 
 python=
 for c in pypy3 pypy python3 python; do
-	if PATH=/usr/local/bin command -v "$c" > /dev/null; then
-		python="$c"
+	if [ -x "/usr/local/bin/$c" ]; then
+		python="/usr/local/bin/$c"
 		break
 	fi
 done
@@ -22,5 +22,5 @@ if ! "$python" -c 'import sys; exit((sys.version_info[0] == 3 and sys.version_in
 	exit
 fi
 
-pip install -q 'hy==0.12.1'
+pip install -q 'hy==0.13.0'
 hy ./container.hy

+ 19 - 0
test/tests/rabbitmq-basics/receive.py

@@ -0,0 +1,19 @@
+#!/usr/bin/env python3
+import pika
+
+# https://www.rabbitmq.com/tutorials/tutorial-one-python.html
+
+connection = pika.BlockingConnection(pika.ConnectionParameters('rabbitmq'))
+channel = connection.channel()
+
+channel.queue_declare(queue='hello')
+
+def callback(ch, method, properties, body):
+    print(body.decode('utf-8'))
+    connection.close()
+
+channel.basic_consume(callback,
+                      queue='hello',
+                      no_ack=True)
+
+channel.start_consuming()

+ 39 - 0
test/tests/rabbitmq-basics/run.sh

@@ -0,0 +1,39 @@
+#!/usr/bin/env bash
+set -Eeuo pipefail
+
+# https://www.rabbitmq.com/tutorials/tutorial-one-python.html
+
+dir="$(dirname "$(readlink -f "$BASH_SOURCE")")"
+
+serverImage="$1"
+
+clientImage="$("$dir/../image-name.sh" librarytest/rabbitmq-basics "$serverImage")"
+"$dir/../docker-build.sh" "$dir" "$clientImage" <<EOD
+FROM python:3.6-slim
+RUN pip install pika==0.11.0
+COPY dir/*.py /usr/local/bin/
+EOD
+
+cname="rabbitmq-container-$RANDOM-$RANDOM"
+cid="$(docker run -d --name "$cname" "$serverImage")"
+trap "docker rm -vf $cid > /dev/null" EXIT
+
+client() {
+	docker run -i --rm --link "$cname":rabbitmq "$clientImage" "$@"
+}
+
+. "$dir/../../retry.sh" 'client testconn.py'
+
+test-send-recv() {
+	local payload="$1"; shift
+	client send.py "$payload"
+	response="$(client receive.py)"
+	if [ "$payload" != "$response" ]; then
+		echo >&2 "error: expected '$payload' but got '$response' instead"
+		return 1
+	fi
+}
+
+test-send-recv 'hello'
+test-send-recv "$RANDOM"
+test-send-recv $'a\nb\nc\td'

Some files were not shown because too many files changed in this diff