From f21a7b67a5e1c107a57c02bd9b4deaee05e7145c Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 12 Oct 2018 18:13:00 +0000 Subject: [PATCH] Run update.sh --- erlang/README.md | 4 +++- ghost/README.md | 4 ++-- golang/README.md | 11 +++++++++++ haxe/README.md | 2 ++ joomla/README.md | 24 ++++++++++++------------ julia/README.md | 19 +++++++++++++++++++ memcached/README.md | 4 ++-- mongo/README.md | 21 +++++++++++++++++++++ node/README.md | 6 +++++- openjdk/README.md | 27 +++++++++++++++++++-------- perl/README.md | 4 +++- php/README.md | 16 +++++++++------- postgres/README.md | 4 ++-- pypy/README.md | 6 +++++- python/README.md | 15 ++++++++++++++- redis/README.md | 8 +++++--- rocket.chat/README.md | 2 +- ruby/README.md | 6 +++++- rust/README.md | 6 +++++- wordpress/README.md | 24 ++++++++++++------------ 20 files changed, 157 insertions(+), 56 deletions(-) diff --git a/erlang/README.md b/erlang/README.md index 9e1a69b9a..348f30aad 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -112,7 +112,9 @@ The `erlang` images come in many flavors, each designed for a specific use case. ## `erlang:` -This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. This tag is based off of [`buildpack-deps`](https://registry.hub.docker.com/_/buildpack-deps/). `buildpack-deps` is designed for the average user of docker who has many images on their system. It, by design, has a large number of extremely common Debian packages. This reduces the number of packages that images that derive from it need to install, thus reducing the overall size of all images on your system. +This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. + +This tag is based off of [`buildpack-deps`](https://hub.docker.com/_/buildpack-deps/). `buildpack-deps` is designed for the average user of Docker who has many images on their system. It, by design, has a large number of extremely common Debian packages. This reduces the number of packages that images that derive from it need to install, thus reducing the overall size of all images on your system. ## `erlang:-slim` diff --git a/ghost/README.md b/ghost/README.md index 996188460..114416d62 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -16,8 +16,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.2.0`, `2.2`, `2`, `latest` (*2/debian/Dockerfile*)](https://github.com/docker-library/ghost/blob/e91e6026c4437fcd11482f4f500a88c5b7d5be96/2/debian/Dockerfile) -- [`2.2.0-alpine`, `2.2-alpine`, `2-alpine`, `alpine` (*2/alpine/Dockerfile*)](https://github.com/docker-library/ghost/blob/e91e6026c4437fcd11482f4f500a88c5b7d5be96/2/alpine/Dockerfile) +- [`2.2.2`, `2.2`, `2`, `latest` (*2/debian/Dockerfile*)](https://github.com/docker-library/ghost/blob/ae3cc785ed9f54b70cd4d8fe983eeb1980843683/2/debian/Dockerfile) +- [`2.2.2-alpine`, `2.2-alpine`, `2-alpine`, `alpine` (*2/alpine/Dockerfile*)](https://github.com/docker-library/ghost/blob/ae3cc785ed9f54b70cd4d8fe983eeb1980843683/2/alpine/Dockerfile) - [`1.25.5`, `1.25`, `1` (*1/debian/Dockerfile*)](https://github.com/docker-library/ghost/blob/4792c91799bca4e41a5f8439cf068f05e2341662/1/debian/Dockerfile) - [`1.25.5-alpine`, `1.25-alpine`, `1-alpine` (*1/alpine/Dockerfile*)](https://github.com/docker-library/ghost/blob/4792c91799bca4e41a5f8439cf068f05e2341662/1/alpine/Dockerfile) - [`0.11.13`, `0.11`, `0` (*0/debian/Dockerfile*)](https://github.com/docker-library/ghost/blob/d14e83ced34cd574b9473023e2765683f4e99e65/0/debian/Dockerfile) diff --git a/golang/README.md b/golang/README.md index c7d5c3d2e..d6a2b1da9 100644 --- a/golang/README.md +++ b/golang/README.md @@ -160,6 +160,8 @@ The `golang` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. +Some of these tags may have names like stretch in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. + ## `golang:-alpine` This image is based on the popular [Alpine Linux project](http://alpinelinux.org), available in [the `alpine` official image](https://hub.docker.com/_/alpine). Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general. @@ -168,6 +170,15 @@ This variant is highly recommended when final image size being as small as possi To minimize image size, it's uncommon for additional related tools (such as `git` or `bash`) to be included in Alpine-based images. Using this image as a base, add the things you need in your own Dockerfile (see the [`alpine` image description](https://hub.docker.com/_/alpine/) for examples of how to install packages if you are unfamiliar). +## `golang:-windowsservercore` + +This image is based on [Windows Server Core (`microsoft/windowsservercore`)](https://hub.docker.com/r/microsoft/windowsservercore/). As such, it only works in places which that image does, such as Windows 10 Professional/Enterprise (Anniversary Edition) or Windows Server 2016. + +For information about how to get Docker running on Windows, please see the relevant "Quick Start" guide provided by Microsoft: + +- [Windows Server Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_server) +- [Windows 10 Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_10) + # License View [license information](http://golang.org/LICENSE) for the software contained in this image. diff --git a/haxe/README.md b/haxe/README.md index 074666043..a9d89d853 100644 --- a/haxe/README.md +++ b/haxe/README.md @@ -149,6 +149,8 @@ The `haxe` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. +Some of these tags may have names like jessie or stretch in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. + ## `haxe:-onbuild` The `ONBUILD` image variants are deprecated, and their usage is discouraged. For more details, see [docker-library/official-images#2076](https://github.com/docker-library/official-images/issues/2076). diff --git a/joomla/README.md b/joomla/README.md index ac964ae8c..67a1e5cbc 100644 --- a/joomla/README.md +++ b/joomla/README.md @@ -16,18 +16,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.8.12-php5.6-apache`, `3.8-php5.6-apache`, `3-php5.6-apache`, `php5.6-apache`, `3.8.12-php5.6`, `3.8-php5.6`, `3-php5.6`, `php5.6` (*php5.6/apache/Dockerfile*)](https://github.com/joomla/docker-joomla/blob/2eeb03d4fc3126b2985afc59fc1636ad7e28be98/php5.6/apache/Dockerfile) -- [`3.8.12-php5.6-fpm`, `3.8-php5.6-fpm`, `3-php5.6-fpm`, `php5.6-fpm` (*php5.6/fpm/Dockerfile*)](https://github.com/joomla/docker-joomla/blob/2eeb03d4fc3126b2985afc59fc1636ad7e28be98/php5.6/fpm/Dockerfile) -- [`3.8.12-php5.6-fpm-alpine`, `3.8-php5.6-fpm-alpine`, `3-php5.6-fpm-alpine`, `php5.6-fpm-alpine` (*php5.6/fpm-alpine/Dockerfile*)](https://github.com/joomla/docker-joomla/blob/2eeb03d4fc3126b2985afc59fc1636ad7e28be98/php5.6/fpm-alpine/Dockerfile) -- [`3.8.12-php7.0-apache`, `3.8-php7.0-apache`, `3-php7.0-apache`, `php7.0-apache`, `3.8.12-php7.0`, `3.8-php7.0`, `3-php7.0`, `php7.0` (*php7.0/apache/Dockerfile*)](https://github.com/joomla/docker-joomla/blob/2eeb03d4fc3126b2985afc59fc1636ad7e28be98/php7.0/apache/Dockerfile) -- [`3.8.12-php7.0-fpm`, `3.8-php7.0-fpm`, `3-php7.0-fpm`, `php7.0-fpm` (*php7.0/fpm/Dockerfile*)](https://github.com/joomla/docker-joomla/blob/2eeb03d4fc3126b2985afc59fc1636ad7e28be98/php7.0/fpm/Dockerfile) -- [`3.8.12-php7.0-fpm-alpine`, `3.8-php7.0-fpm-alpine`, `3-php7.0-fpm-alpine`, `php7.0-fpm-alpine` (*php7.0/fpm-alpine/Dockerfile*)](https://github.com/joomla/docker-joomla/blob/2eeb03d4fc3126b2985afc59fc1636ad7e28be98/php7.0/fpm-alpine/Dockerfile) -- [`3.8.12-apache`, `3.8-apache`, `3-apache`, `apache`, `3.8.12`, `3.8`, `3`, `latest`, `3.8.12-php7.1-apache`, `3.8-php7.1-apache`, `3-php7.1-apache`, `php7.1-apache`, `3.8.12-php7.1`, `3.8-php7.1`, `3-php7.1`, `php7.1` (*php7.1/apache/Dockerfile*)](https://github.com/joomla/docker-joomla/blob/2eeb03d4fc3126b2985afc59fc1636ad7e28be98/php7.1/apache/Dockerfile) -- [`3.8.12-fpm`, `3.8-fpm`, `3-fpm`, `fpm`, `3.8.12-php7.1-fpm`, `3.8-php7.1-fpm`, `3-php7.1-fpm`, `php7.1-fpm` (*php7.1/fpm/Dockerfile*)](https://github.com/joomla/docker-joomla/blob/2eeb03d4fc3126b2985afc59fc1636ad7e28be98/php7.1/fpm/Dockerfile) -- [`3.8.12-fpm-alpine`, `3.8-fpm-alpine`, `3-fpm-alpine`, `fpm-alpine`, `3.8.12-php7.1-fpm-alpine`, `3.8-php7.1-fpm-alpine`, `3-php7.1-fpm-alpine`, `php7.1-fpm-alpine` (*php7.1/fpm-alpine/Dockerfile*)](https://github.com/joomla/docker-joomla/blob/2eeb03d4fc3126b2985afc59fc1636ad7e28be98/php7.1/fpm-alpine/Dockerfile) -- [`3.8.12-php7.2-apache`, `3.8-php7.2-apache`, `3-php7.2-apache`, `php7.2-apache`, `3.8.12-php7.2`, `3.8-php7.2`, `3-php7.2`, `php7.2` (*php7.2/apache/Dockerfile*)](https://github.com/joomla/docker-joomla/blob/2eeb03d4fc3126b2985afc59fc1636ad7e28be98/php7.2/apache/Dockerfile) -- [`3.8.12-php7.2-fpm`, `3.8-php7.2-fpm`, `3-php7.2-fpm`, `php7.2-fpm` (*php7.2/fpm/Dockerfile*)](https://github.com/joomla/docker-joomla/blob/2eeb03d4fc3126b2985afc59fc1636ad7e28be98/php7.2/fpm/Dockerfile) -- [`3.8.12-php7.2-fpm-alpine`, `3.8-php7.2-fpm-alpine`, `3-php7.2-fpm-alpine`, `php7.2-fpm-alpine` (*php7.2/fpm-alpine/Dockerfile*)](https://github.com/joomla/docker-joomla/blob/2eeb03d4fc3126b2985afc59fc1636ad7e28be98/php7.2/fpm-alpine/Dockerfile) +- [`3.8.13-php5.6-apache`, `3.8-php5.6-apache`, `3-php5.6-apache`, `php5.6-apache`, `3.8.13-php5.6`, `3.8-php5.6`, `3-php5.6`, `php5.6` (*php5.6/apache/Dockerfile*)](https://github.com/joomla/docker-joomla/blob/23d27541b491bb4b259e1941ec48a9c6e495b70d/php5.6/apache/Dockerfile) +- [`3.8.13-php5.6-fpm`, `3.8-php5.6-fpm`, `3-php5.6-fpm`, `php5.6-fpm` (*php5.6/fpm/Dockerfile*)](https://github.com/joomla/docker-joomla/blob/23d27541b491bb4b259e1941ec48a9c6e495b70d/php5.6/fpm/Dockerfile) +- [`3.8.13-php5.6-fpm-alpine`, `3.8-php5.6-fpm-alpine`, `3-php5.6-fpm-alpine`, `php5.6-fpm-alpine` (*php5.6/fpm-alpine/Dockerfile*)](https://github.com/joomla/docker-joomla/blob/23d27541b491bb4b259e1941ec48a9c6e495b70d/php5.6/fpm-alpine/Dockerfile) +- [`3.8.13-php7.0-apache`, `3.8-php7.0-apache`, `3-php7.0-apache`, `php7.0-apache`, `3.8.13-php7.0`, `3.8-php7.0`, `3-php7.0`, `php7.0` (*php7.0/apache/Dockerfile*)](https://github.com/joomla/docker-joomla/blob/23d27541b491bb4b259e1941ec48a9c6e495b70d/php7.0/apache/Dockerfile) +- [`3.8.13-php7.0-fpm`, `3.8-php7.0-fpm`, `3-php7.0-fpm`, `php7.0-fpm` (*php7.0/fpm/Dockerfile*)](https://github.com/joomla/docker-joomla/blob/23d27541b491bb4b259e1941ec48a9c6e495b70d/php7.0/fpm/Dockerfile) +- [`3.8.13-php7.0-fpm-alpine`, `3.8-php7.0-fpm-alpine`, `3-php7.0-fpm-alpine`, `php7.0-fpm-alpine` (*php7.0/fpm-alpine/Dockerfile*)](https://github.com/joomla/docker-joomla/blob/23d27541b491bb4b259e1941ec48a9c6e495b70d/php7.0/fpm-alpine/Dockerfile) +- [`3.8.13-apache`, `3.8-apache`, `3-apache`, `apache`, `3.8.13`, `3.8`, `3`, `latest`, `3.8.13-php7.1-apache`, `3.8-php7.1-apache`, `3-php7.1-apache`, `php7.1-apache`, `3.8.13-php7.1`, `3.8-php7.1`, `3-php7.1`, `php7.1` (*php7.1/apache/Dockerfile*)](https://github.com/joomla/docker-joomla/blob/23d27541b491bb4b259e1941ec48a9c6e495b70d/php7.1/apache/Dockerfile) +- [`3.8.13-fpm`, `3.8-fpm`, `3-fpm`, `fpm`, `3.8.13-php7.1-fpm`, `3.8-php7.1-fpm`, `3-php7.1-fpm`, `php7.1-fpm` (*php7.1/fpm/Dockerfile*)](https://github.com/joomla/docker-joomla/blob/23d27541b491bb4b259e1941ec48a9c6e495b70d/php7.1/fpm/Dockerfile) +- [`3.8.13-fpm-alpine`, `3.8-fpm-alpine`, `3-fpm-alpine`, `fpm-alpine`, `3.8.13-php7.1-fpm-alpine`, `3.8-php7.1-fpm-alpine`, `3-php7.1-fpm-alpine`, `php7.1-fpm-alpine` (*php7.1/fpm-alpine/Dockerfile*)](https://github.com/joomla/docker-joomla/blob/23d27541b491bb4b259e1941ec48a9c6e495b70d/php7.1/fpm-alpine/Dockerfile) +- [`3.8.13-php7.2-apache`, `3.8-php7.2-apache`, `3-php7.2-apache`, `php7.2-apache`, `3.8.13-php7.2`, `3.8-php7.2`, `3-php7.2`, `php7.2` (*php7.2/apache/Dockerfile*)](https://github.com/joomla/docker-joomla/blob/23d27541b491bb4b259e1941ec48a9c6e495b70d/php7.2/apache/Dockerfile) +- [`3.8.13-php7.2-fpm`, `3.8-php7.2-fpm`, `3-php7.2-fpm`, `php7.2-fpm` (*php7.2/fpm/Dockerfile*)](https://github.com/joomla/docker-joomla/blob/23d27541b491bb4b259e1941ec48a9c6e495b70d/php7.2/fpm/Dockerfile) +- [`3.8.13-php7.2-fpm-alpine`, `3.8-php7.2-fpm-alpine`, `3-php7.2-fpm-alpine`, `php7.2-fpm-alpine` (*php7.2/fpm-alpine/Dockerfile*)](https://github.com/joomla/docker-joomla/blob/23d27541b491bb4b259e1941ec48a9c6e495b70d/php7.2/fpm-alpine/Dockerfile) # Quick reference diff --git a/julia/README.md b/julia/README.md index 558850fa7..4bfb043ff 100644 --- a/julia/README.md +++ b/julia/README.md @@ -91,6 +91,25 @@ $ docker run -it --rm julia $ docker run -it --rm -v "$PWD":/usr/myapp -w /usr/myapp julia julia script.jl arg1 arg2 ``` +# Image Variants + +The `julia` images come in many flavors, each designed for a specific use case. + +## `julia:` + +This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. + +Some of these tags may have names like jessie or stretch in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. + +## `julia:-windowsservercore` + +This image is based on [Windows Server Core (`microsoft/windowsservercore`)](https://hub.docker.com/r/microsoft/windowsservercore/). As such, it only works in places which that image does, such as Windows 10 Professional/Enterprise (Anniversary Edition) or Windows Server 2016. + +For information about how to get Docker running on Windows, please see the relevant "Quick Start" guide provided by Microsoft: + +- [Windows Server Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_server) +- [Windows 10 Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_10) + # License View [license information](http://julialang.org/) for the software contained in this image. diff --git a/memcached/README.md b/memcached/README.md index d6a9eb4e1..67ad33541 100644 --- a/memcached/README.md +++ b/memcached/README.md @@ -16,8 +16,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.5.10`, `1.5`, `1`, `latest` (*debian/Dockerfile*)](https://github.com/docker-library/memcached/blob/04dbe5166ad88cca06885b68bd44efedc9a13771/debian/Dockerfile) -- [`1.5.10-alpine`, `1.5-alpine`, `1-alpine`, `alpine` (*alpine/Dockerfile*)](https://github.com/docker-library/memcached/blob/04dbe5166ad88cca06885b68bd44efedc9a13771/alpine/Dockerfile) +- [`1.5.11`, `1.5`, `1`, `latest` (*debian/Dockerfile*)](https://github.com/docker-library/memcached/blob/66cbfc84fd2a8a08bc43d065bc6d74e0b48e972d/debian/Dockerfile) +- [`1.5.11-alpine`, `1.5-alpine`, `1-alpine`, `alpine` (*alpine/Dockerfile*)](https://github.com/docker-library/memcached/blob/66cbfc84fd2a8a08bc43d065bc6d74e0b48e972d/alpine/Dockerfile) # Quick reference diff --git a/mongo/README.md b/mongo/README.md index 8ee71ff51..e36bf3bff 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -287,6 +287,27 @@ Most of the normal tools will work, although their usage might be a little convo $ docker exec some-mongo sh -c 'exec mongodump -d --archive' > /some/path/on/your/host/all-collections.archive ``` +# Image Variants + +The `mongo` images come in many flavors, each designed for a specific use case. + +## `mongo:` + +This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. + +Some of these tags may have names like jessie or stretch in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. + +Some of these tags may have names like xenial in them. These are the suite code names for releases of [Ubuntu](https://wiki.ubuntu.com/Releases) and indicate which release the image is based on. + +## `mongo:-windowsservercore` + +This image is based on [Windows Server Core (`microsoft/windowsservercore`)](https://hub.docker.com/r/microsoft/windowsservercore/). As such, it only works in places which that image does, such as Windows 10 Professional/Enterprise (Anniversary Edition) or Windows Server 2016. + +For information about how to get Docker running on Windows, please see the relevant "Quick Start" guide provided by Microsoft: + +- [Windows Server Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_server) +- [Windows 10 Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_10) + # License View [license information](https://github.com/mongodb/mongo/blob/7c3cfac300cfcca4f73f1c3b18457f0f8fae3f69/README#L71) for the software contained in this image. diff --git a/node/README.md b/node/README.md index 3c0ee0108..6178a589b 100644 --- a/node/README.md +++ b/node/README.md @@ -83,7 +83,11 @@ The `node` images come in many flavors, each designed for a specific use case. ## `node:` -This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. This tag is based off of [`buildpack-deps`](https://registry.hub.docker.com/_/buildpack-deps/). `buildpack-deps` is designed for the average user of docker who has many images on their system. It, by design, has a large number of extremely common Debian packages. This reduces the number of packages that images that derive from it need to install, thus reducing the overall size of all images on your system. +This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. + +This tag is based off of [`buildpack-deps`](https://hub.docker.com/_/buildpack-deps/). `buildpack-deps` is designed for the average user of Docker who has many images on their system. It, by design, has a large number of extremely common Debian packages. This reduces the number of packages that images that derive from it need to install, thus reducing the overall size of all images on your system. + +Some of these tags may have names like jessie or stretch in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. ## `node:-alpine` diff --git a/openjdk/README.md b/openjdk/README.md index ef15b7838..7ce853cb6 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -18,11 +18,11 @@ WARNING: ## Simple Tags -- [`12-ea-14-jdk-oraclelinux7`, `12-ea-14-oraclelinux7`, `12-ea-jdk-oraclelinux7`, `12-ea-oraclelinux7`, `12-jdk-oraclelinux7`, `12-oraclelinux7`, `12-ea-14-jdk-oracle`, `12-ea-14-oracle`, `12-ea-jdk-oracle`, `12-ea-oracle`, `12-jdk-oracle`, `12-oracle` (*12/jdk/oracle/Dockerfile*)](https://github.com/docker-library/openjdk/blob/1c341f869e22b2db077c4f36f9f5d4c407d33c84/12/jdk/oracle/Dockerfile) +- [`12-ea-15-jdk-oraclelinux7`, `12-ea-15-oraclelinux7`, `12-ea-jdk-oraclelinux7`, `12-ea-oraclelinux7`, `12-jdk-oraclelinux7`, `12-oraclelinux7`, `12-ea-15-jdk-oracle`, `12-ea-15-oracle`, `12-ea-jdk-oracle`, `12-ea-oracle`, `12-jdk-oracle`, `12-oracle` (*12/jdk/oracle/Dockerfile*)](https://github.com/docker-library/openjdk/blob/8502712f6e80904b766505805c894c2008afa700/12/jdk/oracle/Dockerfile) - [`12-ea-14-jdk-alpine3.8`, `12-ea-14-alpine3.8`, `12-ea-jdk-alpine3.8`, `12-ea-alpine3.8`, `12-jdk-alpine3.8`, `12-alpine3.8`, `12-ea-14-jdk-alpine`, `12-ea-14-alpine`, `12-ea-jdk-alpine`, `12-ea-alpine`, `12-jdk-alpine`, `12-alpine` (*12/jdk/alpine/Dockerfile*)](https://github.com/docker-library/openjdk/blob/57de518e280c26fa8a9f602e76c3f3ea95f8296c/12/jdk/alpine/Dockerfile) -- [`12-ea-14-jdk-windowsservercore-ltsc2016`, `12-ea-14-windowsservercore-ltsc2016`, `12-ea-jdk-windowsservercore-ltsc2016`, `12-ea-windowsservercore-ltsc2016`, `12-jdk-windowsservercore-ltsc2016`, `12-windowsservercore-ltsc2016` (*12/jdk/windows/windowsservercore-ltsc2016/Dockerfile*)](https://github.com/docker-library/openjdk/blob/1c341f869e22b2db077c4f36f9f5d4c407d33c84/12/jdk/windows/windowsservercore-ltsc2016/Dockerfile) -- [`12-ea-14-jdk-windowsservercore-1709`, `12-ea-14-windowsservercore-1709`, `12-ea-jdk-windowsservercore-1709`, `12-ea-windowsservercore-1709`, `12-jdk-windowsservercore-1709`, `12-windowsservercore-1709` (*12/jdk/windows/windowsservercore-1709/Dockerfile*)](https://github.com/docker-library/openjdk/blob/1c341f869e22b2db077c4f36f9f5d4c407d33c84/12/jdk/windows/windowsservercore-1709/Dockerfile) -- [`12-ea-14-jdk-windowsservercore-1803`, `12-ea-14-windowsservercore-1803`, `12-ea-jdk-windowsservercore-1803`, `12-ea-windowsservercore-1803`, `12-jdk-windowsservercore-1803`, `12-windowsservercore-1803` (*12/jdk/windows/windowsservercore-1803/Dockerfile*)](https://github.com/docker-library/openjdk/blob/1c341f869e22b2db077c4f36f9f5d4c407d33c84/12/jdk/windows/windowsservercore-1803/Dockerfile) +- [`12-ea-15-jdk-windowsservercore-ltsc2016`, `12-ea-15-windowsservercore-ltsc2016`, `12-ea-jdk-windowsservercore-ltsc2016`, `12-ea-windowsservercore-ltsc2016`, `12-jdk-windowsservercore-ltsc2016`, `12-windowsservercore-ltsc2016` (*12/jdk/windows/windowsservercore-ltsc2016/Dockerfile*)](https://github.com/docker-library/openjdk/blob/8502712f6e80904b766505805c894c2008afa700/12/jdk/windows/windowsservercore-ltsc2016/Dockerfile) +- [`12-ea-15-jdk-windowsservercore-1709`, `12-ea-15-windowsservercore-1709`, `12-ea-jdk-windowsservercore-1709`, `12-ea-windowsservercore-1709`, `12-jdk-windowsservercore-1709`, `12-windowsservercore-1709` (*12/jdk/windows/windowsservercore-1709/Dockerfile*)](https://github.com/docker-library/openjdk/blob/8502712f6e80904b766505805c894c2008afa700/12/jdk/windows/windowsservercore-1709/Dockerfile) +- [`12-ea-15-jdk-windowsservercore-1803`, `12-ea-15-windowsservercore-1803`, `12-ea-jdk-windowsservercore-1803`, `12-ea-windowsservercore-1803`, `12-jdk-windowsservercore-1803`, `12-windowsservercore-1803` (*12/jdk/windows/windowsservercore-1803/Dockerfile*)](https://github.com/docker-library/openjdk/blob/8502712f6e80904b766505805c894c2008afa700/12/jdk/windows/windowsservercore-1803/Dockerfile) - [`11-jdk-oraclelinux7`, `11-oraclelinux7`, `11-jdk-oracle`, `11-oracle` (*11/jdk/oracle/Dockerfile*)](https://github.com/docker-library/openjdk/blob/7d6b0528da55c7b74feff4f565c9dbb8907b8c9a/11/jdk/oracle/Dockerfile) - [`11-jdk-sid`, `11-sid`, `11-jdk`, `11` (*11/jdk/Dockerfile*)](https://github.com/docker-library/openjdk/blob/2e23069b35737d02166d86d25088a02330a7ac96/11/jdk/Dockerfile) - [`11-jdk-slim-sid`, `11-slim-sid`, `11-jdk-slim`, `11-slim` (*11/jdk/slim/Dockerfile*)](https://github.com/docker-library/openjdk/blob/2e23069b35737d02166d86d25088a02330a7ac96/11/jdk/slim/Dockerfile) @@ -57,10 +57,10 @@ WARNING: ## Shared Tags -- `12-ea-14-jdk-windowsservercore`, `12-ea-14-windowsservercore`, `12-ea-jdk-windowsservercore`, `12-ea-windowsservercore`, `12-jdk-windowsservercore`, `12-windowsservercore`: - - [`12-ea-14-jdk-windowsservercore-ltsc2016` (*12/jdk/windows/windowsservercore-ltsc2016/Dockerfile*)](https://github.com/docker-library/openjdk/blob/1c341f869e22b2db077c4f36f9f5d4c407d33c84/12/jdk/windows/windowsservercore-ltsc2016/Dockerfile) - - [`12-ea-14-jdk-windowsservercore-1709` (*12/jdk/windows/windowsservercore-1709/Dockerfile*)](https://github.com/docker-library/openjdk/blob/1c341f869e22b2db077c4f36f9f5d4c407d33c84/12/jdk/windows/windowsservercore-1709/Dockerfile) - - [`12-ea-14-jdk-windowsservercore-1803` (*12/jdk/windows/windowsservercore-1803/Dockerfile*)](https://github.com/docker-library/openjdk/blob/1c341f869e22b2db077c4f36f9f5d4c407d33c84/12/jdk/windows/windowsservercore-1803/Dockerfile) +- `12-ea-15-jdk-windowsservercore`, `12-ea-15-windowsservercore`, `12-ea-jdk-windowsservercore`, `12-ea-windowsservercore`, `12-jdk-windowsservercore`, `12-windowsservercore`: + - [`12-ea-15-jdk-windowsservercore-ltsc2016` (*12/jdk/windows/windowsservercore-ltsc2016/Dockerfile*)](https://github.com/docker-library/openjdk/blob/8502712f6e80904b766505805c894c2008afa700/12/jdk/windows/windowsservercore-ltsc2016/Dockerfile) + - [`12-ea-15-jdk-windowsservercore-1709` (*12/jdk/windows/windowsservercore-1709/Dockerfile*)](https://github.com/docker-library/openjdk/blob/8502712f6e80904b766505805c894c2008afa700/12/jdk/windows/windowsservercore-1709/Dockerfile) + - [`12-ea-15-jdk-windowsservercore-1803` (*12/jdk/windows/windowsservercore-1803/Dockerfile*)](https://github.com/docker-library/openjdk/blob/8502712f6e80904b766505805c894c2008afa700/12/jdk/windows/windowsservercore-1803/Dockerfile) - `11-jdk-windowsservercore`, `11-windowsservercore`: - [`11-jdk-windowsservercore-ltsc2016` (*11/jdk/windows/windowsservercore-ltsc2016/Dockerfile*)](https://github.com/docker-library/openjdk/blob/7d6b0528da55c7b74feff4f565c9dbb8907b8c9a/11/jdk/windows/windowsservercore-ltsc2016/Dockerfile) - [`11-jdk-windowsservercore-1709` (*11/jdk/windows/windowsservercore-1709/Dockerfile*)](https://github.com/docker-library/openjdk/blob/7d6b0528da55c7b74feff4f565c9dbb8907b8c9a/11/jdk/windows/windowsservercore-1709/Dockerfile) @@ -177,6 +177,8 @@ The `openjdk` images come in many flavors, each designed for a specific use case This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. +Some of these tags may have names like jessie, sid, or stretch in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. + ## `openjdk:-alpine` This image is based on the popular [Alpine Linux project](http://alpinelinux.org), available in [the `alpine` official image](https://hub.docker.com/_/alpine). Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general. @@ -185,6 +187,15 @@ This variant is highly recommended when final image size being as small as possi To minimize image size, it's uncommon for additional related tools (such as `git` or `bash`) to be included in Alpine-based images. Using this image as a base, add the things you need in your own Dockerfile (see the [`alpine` image description](https://hub.docker.com/_/alpine/) for examples of how to install packages if you are unfamiliar). +## `openjdk:-windowsservercore` + +This image is based on [Windows Server Core (`microsoft/windowsservercore`)](https://hub.docker.com/r/microsoft/windowsservercore/). As such, it only works in places which that image does, such as Windows 10 Professional/Enterprise (Anniversary Edition) or Windows Server 2016. + +For information about how to get Docker running on Windows, please see the relevant "Quick Start" guide provided by Microsoft: + +- [Windows Server Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_server) +- [Windows 10 Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_10) + ## `openjdk:-slim` This image installs the `-headless` package of OpenJDK and so is missing many of the UI-related Java libraries and some common packages contained in the default tag. It only contains the minimal packages needed to run Java. Unless you are working in an environment where *only* the `openjdk` image will be deployed and you have space constraints, we highly recommend using the default image of this repository. diff --git a/perl/README.md b/perl/README.md index 35a23b514..b48293ba1 100644 --- a/perl/README.md +++ b/perl/README.md @@ -121,7 +121,9 @@ The `perl` images come in many flavors, each designed for a specific use case. ## `perl:` -This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. This tag is based off of [`buildpack-deps`](https://registry.hub.docker.com/_/buildpack-deps/). `buildpack-deps` is designed for the average user of docker who has many images on their system. It, by design, has a large number of extremely common Debian packages. This reduces the number of packages that images that derive from it need to install, thus reducing the overall size of all images on your system. +This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. + +This tag is based off of [`buildpack-deps`](https://hub.docker.com/_/buildpack-deps/). `buildpack-deps` is designed for the average user of Docker who has many images on their system. It, by design, has a large number of extremely common Debian packages. This reduces the number of packages that images that derive from it need to install, thus reducing the overall size of all images on your system. ## `perl:-slim` diff --git a/php/README.md b/php/README.md index 7b1e188fa..a2d6c82c5 100644 --- a/php/README.md +++ b/php/README.md @@ -16,13 +16,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.3.0RC2-cli-stretch`, `7.3-rc-cli-stretch`, `rc-cli-stretch`, `7.3.0RC2-stretch`, `7.3-rc-stretch`, `rc-stretch`, `7.3.0RC2-cli`, `7.3-rc-cli`, `rc-cli`, `7.3.0RC2`, `7.3-rc`, `rc` (*7.3-rc/stretch/cli/Dockerfile*)](https://github.com/docker-library/php/blob/d3beb19a515cde39a7953e278feed441fcef472c/7.3-rc/stretch/cli/Dockerfile) -- [`7.3.0RC2-apache-stretch`, `7.3-rc-apache-stretch`, `rc-apache-stretch`, `7.3.0RC2-apache`, `7.3-rc-apache`, `rc-apache` (*7.3-rc/stretch/apache/Dockerfile*)](https://github.com/docker-library/php/blob/d3beb19a515cde39a7953e278feed441fcef472c/7.3-rc/stretch/apache/Dockerfile) -- [`7.3.0RC2-fpm-stretch`, `7.3-rc-fpm-stretch`, `rc-fpm-stretch`, `7.3.0RC2-fpm`, `7.3-rc-fpm`, `rc-fpm` (*7.3-rc/stretch/fpm/Dockerfile*)](https://github.com/docker-library/php/blob/d3beb19a515cde39a7953e278feed441fcef472c/7.3-rc/stretch/fpm/Dockerfile) -- [`7.3.0RC2-zts-stretch`, `7.3-rc-zts-stretch`, `rc-zts-stretch`, `7.3.0RC2-zts`, `7.3-rc-zts`, `rc-zts` (*7.3-rc/stretch/zts/Dockerfile*)](https://github.com/docker-library/php/blob/d3beb19a515cde39a7953e278feed441fcef472c/7.3-rc/stretch/zts/Dockerfile) -- [`7.3.0RC2-cli-alpine3.8`, `7.3-rc-cli-alpine3.8`, `rc-cli-alpine3.8`, `7.3.0RC2-alpine3.8`, `7.3-rc-alpine3.8`, `rc-alpine3.8`, `7.3.0RC2-cli-alpine`, `7.3-rc-cli-alpine`, `rc-cli-alpine`, `7.3.0RC2-alpine`, `7.3-rc-alpine`, `rc-alpine` (*7.3-rc/alpine3.8/cli/Dockerfile*)](https://github.com/docker-library/php/blob/d3beb19a515cde39a7953e278feed441fcef472c/7.3-rc/alpine3.8/cli/Dockerfile) -- [`7.3.0RC2-fpm-alpine3.8`, `7.3-rc-fpm-alpine3.8`, `rc-fpm-alpine3.8`, `7.3.0RC2-fpm-alpine`, `7.3-rc-fpm-alpine`, `rc-fpm-alpine` (*7.3-rc/alpine3.8/fpm/Dockerfile*)](https://github.com/docker-library/php/blob/d3beb19a515cde39a7953e278feed441fcef472c/7.3-rc/alpine3.8/fpm/Dockerfile) -- [`7.3.0RC2-zts-alpine3.8`, `7.3-rc-zts-alpine3.8`, `rc-zts-alpine3.8`, `7.3.0RC2-zts-alpine`, `7.3-rc-zts-alpine`, `rc-zts-alpine` (*7.3-rc/alpine3.8/zts/Dockerfile*)](https://github.com/docker-library/php/blob/d3beb19a515cde39a7953e278feed441fcef472c/7.3-rc/alpine3.8/zts/Dockerfile) +- [`7.3.0RC3-cli-stretch`, `7.3-rc-cli-stretch`, `rc-cli-stretch`, `7.3.0RC3-stretch`, `7.3-rc-stretch`, `rc-stretch`, `7.3.0RC3-cli`, `7.3-rc-cli`, `rc-cli`, `7.3.0RC3`, `7.3-rc`, `rc` (*7.3-rc/stretch/cli/Dockerfile*)](https://github.com/docker-library/php/blob/7717f268f785e290a52a6cf67551d88c35a1d1ae/7.3-rc/stretch/cli/Dockerfile) +- [`7.3.0RC3-apache-stretch`, `7.3-rc-apache-stretch`, `rc-apache-stretch`, `7.3.0RC3-apache`, `7.3-rc-apache`, `rc-apache` (*7.3-rc/stretch/apache/Dockerfile*)](https://github.com/docker-library/php/blob/7717f268f785e290a52a6cf67551d88c35a1d1ae/7.3-rc/stretch/apache/Dockerfile) +- [`7.3.0RC3-fpm-stretch`, `7.3-rc-fpm-stretch`, `rc-fpm-stretch`, `7.3.0RC3-fpm`, `7.3-rc-fpm`, `rc-fpm` (*7.3-rc/stretch/fpm/Dockerfile*)](https://github.com/docker-library/php/blob/7717f268f785e290a52a6cf67551d88c35a1d1ae/7.3-rc/stretch/fpm/Dockerfile) +- [`7.3.0RC3-zts-stretch`, `7.3-rc-zts-stretch`, `rc-zts-stretch`, `7.3.0RC3-zts`, `7.3-rc-zts`, `rc-zts` (*7.3-rc/stretch/zts/Dockerfile*)](https://github.com/docker-library/php/blob/7717f268f785e290a52a6cf67551d88c35a1d1ae/7.3-rc/stretch/zts/Dockerfile) +- [`7.3.0RC3-cli-alpine3.8`, `7.3-rc-cli-alpine3.8`, `rc-cli-alpine3.8`, `7.3.0RC3-alpine3.8`, `7.3-rc-alpine3.8`, `rc-alpine3.8`, `7.3.0RC3-cli-alpine`, `7.3-rc-cli-alpine`, `rc-cli-alpine`, `7.3.0RC3-alpine`, `7.3-rc-alpine`, `rc-alpine` (*7.3-rc/alpine3.8/cli/Dockerfile*)](https://github.com/docker-library/php/blob/7717f268f785e290a52a6cf67551d88c35a1d1ae/7.3-rc/alpine3.8/cli/Dockerfile) +- [`7.3.0RC3-fpm-alpine3.8`, `7.3-rc-fpm-alpine3.8`, `rc-fpm-alpine3.8`, `7.3.0RC3-fpm-alpine`, `7.3-rc-fpm-alpine`, `rc-fpm-alpine` (*7.3-rc/alpine3.8/fpm/Dockerfile*)](https://github.com/docker-library/php/blob/7717f268f785e290a52a6cf67551d88c35a1d1ae/7.3-rc/alpine3.8/fpm/Dockerfile) +- [`7.3.0RC3-zts-alpine3.8`, `7.3-rc-zts-alpine3.8`, `rc-zts-alpine3.8`, `7.3.0RC3-zts-alpine`, `7.3-rc-zts-alpine`, `rc-zts-alpine` (*7.3-rc/alpine3.8/zts/Dockerfile*)](https://github.com/docker-library/php/blob/7717f268f785e290a52a6cf67551d88c35a1d1ae/7.3-rc/alpine3.8/zts/Dockerfile) - [`7.2.10-cli-stretch`, `7.2-cli-stretch`, `7-cli-stretch`, `cli-stretch`, `7.2.10-stretch`, `7.2-stretch`, `7-stretch`, `stretch`, `7.2.10-cli`, `7.2-cli`, `7-cli`, `cli`, `7.2.10`, `7.2`, `7`, `latest` (*7.2/stretch/cli/Dockerfile*)](https://github.com/docker-library/php/blob/d97098c8c6af46ae1211e65ff052278ab39ba45c/7.2/stretch/cli/Dockerfile) - [`7.2.10-apache-stretch`, `7.2-apache-stretch`, `7-apache-stretch`, `apache-stretch`, `7.2.10-apache`, `7.2-apache`, `7-apache`, `apache` (*7.2/stretch/apache/Dockerfile*)](https://github.com/docker-library/php/blob/d97098c8c6af46ae1211e65ff052278ab39ba45c/7.2/stretch/apache/Dockerfile) - [`7.2.10-fpm-stretch`, `7.2-fpm-stretch`, `7-fpm-stretch`, `fpm-stretch`, `7.2.10-fpm`, `7.2-fpm`, `7-fpm`, `fpm` (*7.2/stretch/fpm/Dockerfile*)](https://github.com/docker-library/php/blob/d97098c8c6af46ae1211e65ff052278ab39ba45c/7.2/stretch/fpm/Dockerfile) @@ -333,6 +333,8 @@ The `php` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. +Some of these tags may have names like jessie or stretch in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. + ## `php:-alpine` This image is based on the popular [Alpine Linux project](http://alpinelinux.org), available in [the `alpine` official image](https://hub.docker.com/_/alpine). Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general. diff --git a/postgres/README.md b/postgres/README.md index 58a1918ed..3eecebc4a 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -16,8 +16,8 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`11-beta4`, `11` (*11/Dockerfile*)](https://github.com/docker-library/postgres/blob/1acd5e225abead13b3f264e9e5a7c68598a33c67/11/Dockerfile) -- [`11-beta4-alpine`, `11-alpine` (*11/alpine/Dockerfile*)](https://github.com/docker-library/postgres/blob/25f99f10cb564f0a8b5c1de8a9a00a8095a587fb/11/alpine/Dockerfile) +- [`11-rc1`, `11` (*11/Dockerfile*)](https://github.com/docker-library/postgres/blob/4b94743e2ef5ead3ce8c66f96e43f6dc9d877025/11/Dockerfile) +- [`11-rc1-alpine`, `11-alpine` (*11/alpine/Dockerfile*)](https://github.com/docker-library/postgres/blob/eed67ed0f33435bffd1e78d27b389e0492d30599/11/alpine/Dockerfile) - [`10.5`, `10`, `latest` (*10/Dockerfile*)](https://github.com/docker-library/postgres/blob/3f585c58df93e93b730c09a13e8904b96fa20c58/10/Dockerfile) - [`10.5-alpine`, `10-alpine`, `alpine` (*10/alpine/Dockerfile*)](https://github.com/docker-library/postgres/blob/3f585c58df93e93b730c09a13e8904b96fa20c58/10/alpine/Dockerfile) - [`9.6.10`, `9.6`, `9` (*9.6/Dockerfile*)](https://github.com/docker-library/postgres/blob/3f585c58df93e93b730c09a13e8904b96fa20c58/9.6/Dockerfile) diff --git a/pypy/README.md b/pypy/README.md index c4baa7b3b..7b883f7bc 100644 --- a/pypy/README.md +++ b/pypy/README.md @@ -118,7 +118,11 @@ The `pypy` images come in many flavors, each designed for a specific use case. ## `pypy:` -This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. This tag is based off of [`buildpack-deps`](https://registry.hub.docker.com/_/buildpack-deps/). `buildpack-deps` is designed for the average user of docker who has many images on their system. It, by design, has a large number of extremely common Debian packages. This reduces the number of packages that images that derive from it need to install, thus reducing the overall size of all images on your system. +This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. + +This tag is based off of [`buildpack-deps`](https://hub.docker.com/_/buildpack-deps/). `buildpack-deps` is designed for the average user of Docker who has many images on their system. It, by design, has a large number of extremely common Debian packages. This reduces the number of packages that images that derive from it need to install, thus reducing the overall size of all images on your system. + +Some of these tags may have names like jessie in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. ## `pypy:-slim` diff --git a/python/README.md b/python/README.md index 2d82f621c..e24e39ffc 100644 --- a/python/README.md +++ b/python/README.md @@ -180,7 +180,11 @@ The `python` images come in many flavors, each designed for a specific use case. ## `python:` -This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. This tag is based off of [`buildpack-deps`](https://registry.hub.docker.com/_/buildpack-deps/). `buildpack-deps` is designed for the average user of docker who has many images on their system. It, by design, has a large number of extremely common Debian packages. This reduces the number of packages that images that derive from it need to install, thus reducing the overall size of all images on your system. +This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. + +This tag is based off of [`buildpack-deps`](https://hub.docker.com/_/buildpack-deps/). `buildpack-deps` is designed for the average user of Docker who has many images on their system. It, by design, has a large number of extremely common Debian packages. This reduces the number of packages that images that derive from it need to install, thus reducing the overall size of all images on your system. + +Some of these tags may have names like jessie, stretch, or wheezy in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. ## `python:-slim` @@ -194,6 +198,15 @@ This variant is highly recommended when final image size being as small as possi To minimize image size, it's uncommon for additional related tools (such as `git` or `bash`) to be included in Alpine-based images. Using this image as a base, add the things you need in your own Dockerfile (see the [`alpine` image description](https://hub.docker.com/_/alpine/) for examples of how to install packages if you are unfamiliar). +## `python:-windowsservercore` + +This image is based on [Windows Server Core (`microsoft/windowsservercore`)](https://hub.docker.com/r/microsoft/windowsservercore/). As such, it only works in places which that image does, such as Windows 10 Professional/Enterprise (Anniversary Edition) or Windows Server 2016. + +For information about how to get Docker running on Windows, please see the relevant "Quick Start" guide provided by Microsoft: + +- [Windows Server Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_server) +- [Windows 10 Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_10) + # License View license information for [Python 2](https://docs.python.org/2/license.html) and [Python 3](https://docs.python.org/3/license.html). diff --git a/redis/README.md b/redis/README.md index 3c6bdfca7..970c1c712 100644 --- a/redis/README.md +++ b/redis/README.md @@ -16,9 +16,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`5.0-rc5`, `5.0-rc`, `5.0-rc5-stretch`, `5.0-rc-stretch` (*5.0-rc/Dockerfile*)](https://github.com/docker-library/redis/blob/53348c1c52c3d2e8666fbf748bc9e2297c35b452/5.0-rc/Dockerfile) -- [`5.0-rc5-32bit`, `5.0-rc-32bit`, `5.0-rc5-32bit-stretch`, `5.0-rc-32bit-stretch` (*5.0-rc/32bit/Dockerfile*)](https://github.com/docker-library/redis/blob/53348c1c52c3d2e8666fbf748bc9e2297c35b452/5.0-rc/32bit/Dockerfile) -- [`5.0-rc5-alpine`, `5.0-rc-alpine`, `5.0-rc5-alpine3.8`, `5.0-rc-alpine3.8` (*5.0-rc/alpine/Dockerfile*)](https://github.com/docker-library/redis/blob/53348c1c52c3d2e8666fbf748bc9e2297c35b452/5.0-rc/alpine/Dockerfile) +- [`5.0-rc6`, `5.0-rc`, `5.0-rc6-stretch`, `5.0-rc-stretch` (*5.0-rc/Dockerfile*)](https://github.com/docker-library/redis/blob/792574dfa561c5c9e8b6bcc48aad76637b49e96c/5.0-rc/Dockerfile) +- [`5.0-rc6-32bit`, `5.0-rc-32bit`, `5.0-rc6-32bit-stretch`, `5.0-rc-32bit-stretch` (*5.0-rc/32bit/Dockerfile*)](https://github.com/docker-library/redis/blob/792574dfa561c5c9e8b6bcc48aad76637b49e96c/5.0-rc/32bit/Dockerfile) +- [`5.0-rc6-alpine`, `5.0-rc-alpine`, `5.0-rc6-alpine3.8`, `5.0-rc-alpine3.8` (*5.0-rc/alpine/Dockerfile*)](https://github.com/docker-library/redis/blob/792574dfa561c5c9e8b6bcc48aad76637b49e96c/5.0-rc/alpine/Dockerfile) - [`4.0.11`, `4.0`, `4`, `latest`, `4.0.11-stretch`, `4.0-stretch`, `4-stretch`, `stretch` (*4.0/Dockerfile*)](https://github.com/docker-library/redis/blob/53348c1c52c3d2e8666fbf748bc9e2297c35b452/4.0/Dockerfile) - [`4.0.11-32bit`, `4.0-32bit`, `4-32bit`, `32bit`, `4.0.11-32bit-stretch`, `4.0-32bit-stretch`, `4-32bit-stretch`, `32bit-stretch` (*4.0/32bit/Dockerfile*)](https://github.com/docker-library/redis/blob/53348c1c52c3d2e8666fbf748bc9e2297c35b452/4.0/32bit/Dockerfile) - [`4.0.11-alpine`, `4.0-alpine`, `4-alpine`, `alpine`, `4.0.11-alpine3.8`, `4.0-alpine3.8`, `4-alpine3.8`, `alpine3.8` (*4.0/alpine/Dockerfile*)](https://github.com/docker-library/redis/blob/53348c1c52c3d2e8666fbf748bc9e2297c35b452/4.0/alpine/Dockerfile) @@ -132,6 +132,8 @@ The `redis` images come in many flavors, each designed for a specific use case. This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. +Some of these tags may have names like stretch in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. + ## `redis:-alpine` This image is based on the popular [Alpine Linux project](http://alpinelinux.org), available in [the `alpine` official image](https://hub.docker.com/_/alpine). Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general. diff --git a/rocket.chat/README.md b/rocket.chat/README.md index 36c596b5c..e8bd4eca7 100644 --- a/rocket.chat/README.md +++ b/rocket.chat/README.md @@ -16,7 +16,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`0.70.3`, `0.70`, `0`, `latest` (*Dockerfile*)](https://github.com/RocketChat/Docker.Official.Image/blob/7ff0833b6dc718d2b35c3301e975093a770a54ad/Dockerfile) +- [`0.70.4`, `0.70`, `0`, `latest` (*Dockerfile*)](https://github.com/RocketChat/Docker.Official.Image/blob/717015e57e3ae10d3da1bcf26c50462b7dd57edb/Dockerfile) # Quick reference diff --git a/ruby/README.md b/ruby/README.md index a7d5899cc..ce1b22e0d 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -135,7 +135,11 @@ The `ruby` images come in many flavors, each designed for a specific use case. ## `ruby:` -This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. This tag is based off of [`buildpack-deps`](https://registry.hub.docker.com/_/buildpack-deps/). `buildpack-deps` is designed for the average user of docker who has many images on their system. It, by design, has a large number of extremely common Debian packages. This reduces the number of packages that images that derive from it need to install, thus reducing the overall size of all images on your system. +This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. + +This tag is based off of [`buildpack-deps`](https://hub.docker.com/_/buildpack-deps/). `buildpack-deps` is designed for the average user of Docker who has many images on their system. It, by design, has a large number of extremely common Debian packages. This reduces the number of packages that images that derive from it need to install, thus reducing the overall size of all images on your system. + +Some of these tags may have names like jessie or stretch in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. ## `ruby:-slim` diff --git a/rust/README.md b/rust/README.md index d58f6a992..f5162a76b 100644 --- a/rust/README.md +++ b/rust/README.md @@ -95,7 +95,11 @@ The `rust` images come in many flavors, each designed for a specific use case. ## `rust:` -This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. This tag is based off of [`buildpack-deps`](https://registry.hub.docker.com/_/buildpack-deps/). `buildpack-deps` is designed for the average user of docker who has many images on their system. It, by design, has a large number of extremely common Debian packages. This reduces the number of packages that images that derive from it need to install, thus reducing the overall size of all images on your system. +This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of. + +This tag is based off of [`buildpack-deps`](https://hub.docker.com/_/buildpack-deps/). `buildpack-deps` is designed for the average user of Docker who has many images on their system. It, by design, has a large number of extremely common Debian packages. This reduces the number of packages that images that derive from it need to install, thus reducing the overall size of all images on your system. + +Some of these tags may have names like stretch in them. These are the suite code names for releases of [Debian](https://wiki.debian.org/DebianReleases) and indicate which release the image is based on. ## `rust:-slim` diff --git a/wordpress/README.md b/wordpress/README.md index fa0b6435b..0a617d633 100644 --- a/wordpress/README.md +++ b/wordpress/README.md @@ -16,18 +16,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`4.9.8-php5.6-apache`, `4.9-php5.6-apache`, `4-php5.6-apache`, `php5.6-apache`, `4.9.8-php5.6`, `4.9-php5.6`, `4-php5.6`, `php5.6` (*php5.6/apache/Dockerfile*)](https://github.com/docker-library/wordpress/blob/57572ac281f3f77846aef85641ca36a02e71458f/php5.6/apache/Dockerfile) -- [`4.9.8-php5.6-fpm`, `4.9-php5.6-fpm`, `4-php5.6-fpm`, `php5.6-fpm` (*php5.6/fpm/Dockerfile*)](https://github.com/docker-library/wordpress/blob/cb50cbaabba8eea67ea6a1f7702a7a1e238f10b9/php5.6/fpm/Dockerfile) -- [`4.9.8-php5.6-fpm-alpine`, `4.9-php5.6-fpm-alpine`, `4-php5.6-fpm-alpine`, `php5.6-fpm-alpine` (*php5.6/fpm-alpine/Dockerfile*)](https://github.com/docker-library/wordpress/blob/cb50cbaabba8eea67ea6a1f7702a7a1e238f10b9/php5.6/fpm-alpine/Dockerfile) -- [`4.9.8-php7.0-apache`, `4.9-php7.0-apache`, `4-php7.0-apache`, `php7.0-apache`, `4.9.8-php7.0`, `4.9-php7.0`, `4-php7.0`, `php7.0` (*php7.0/apache/Dockerfile*)](https://github.com/docker-library/wordpress/blob/cb50cbaabba8eea67ea6a1f7702a7a1e238f10b9/php7.0/apache/Dockerfile) -- [`4.9.8-php7.0-fpm`, `4.9-php7.0-fpm`, `4-php7.0-fpm`, `php7.0-fpm` (*php7.0/fpm/Dockerfile*)](https://github.com/docker-library/wordpress/blob/cb50cbaabba8eea67ea6a1f7702a7a1e238f10b9/php7.0/fpm/Dockerfile) -- [`4.9.8-php7.0-fpm-alpine`, `4.9-php7.0-fpm-alpine`, `4-php7.0-fpm-alpine`, `php7.0-fpm-alpine` (*php7.0/fpm-alpine/Dockerfile*)](https://github.com/docker-library/wordpress/blob/cb50cbaabba8eea67ea6a1f7702a7a1e238f10b9/php7.0/fpm-alpine/Dockerfile) -- [`4.9.8-php7.1-apache`, `4.9-php7.1-apache`, `4-php7.1-apache`, `php7.1-apache`, `4.9.8-php7.1`, `4.9-php7.1`, `4-php7.1`, `php7.1` (*php7.1/apache/Dockerfile*)](https://github.com/docker-library/wordpress/blob/cb50cbaabba8eea67ea6a1f7702a7a1e238f10b9/php7.1/apache/Dockerfile) -- [`4.9.8-php7.1-fpm`, `4.9-php7.1-fpm`, `4-php7.1-fpm`, `php7.1-fpm` (*php7.1/fpm/Dockerfile*)](https://github.com/docker-library/wordpress/blob/cb50cbaabba8eea67ea6a1f7702a7a1e238f10b9/php7.1/fpm/Dockerfile) -- [`4.9.8-php7.1-fpm-alpine`, `4.9-php7.1-fpm-alpine`, `4-php7.1-fpm-alpine`, `php7.1-fpm-alpine` (*php7.1/fpm-alpine/Dockerfile*)](https://github.com/docker-library/wordpress/blob/cb50cbaabba8eea67ea6a1f7702a7a1e238f10b9/php7.1/fpm-alpine/Dockerfile) -- [`4.9.8-apache`, `4.9-apache`, `4-apache`, `apache`, `4.9.8`, `4.9`, `4`, `latest`, `4.9.8-php7.2-apache`, `4.9-php7.2-apache`, `4-php7.2-apache`, `php7.2-apache`, `4.9.8-php7.2`, `4.9-php7.2`, `4-php7.2`, `php7.2` (*php7.2/apache/Dockerfile*)](https://github.com/docker-library/wordpress/blob/cb50cbaabba8eea67ea6a1f7702a7a1e238f10b9/php7.2/apache/Dockerfile) -- [`4.9.8-fpm`, `4.9-fpm`, `4-fpm`, `fpm`, `4.9.8-php7.2-fpm`, `4.9-php7.2-fpm`, `4-php7.2-fpm`, `php7.2-fpm` (*php7.2/fpm/Dockerfile*)](https://github.com/docker-library/wordpress/blob/cb50cbaabba8eea67ea6a1f7702a7a1e238f10b9/php7.2/fpm/Dockerfile) -- [`4.9.8-fpm-alpine`, `4.9-fpm-alpine`, `4-fpm-alpine`, `fpm-alpine`, `4.9.8-php7.2-fpm-alpine`, `4.9-php7.2-fpm-alpine`, `4-php7.2-fpm-alpine`, `php7.2-fpm-alpine` (*php7.2/fpm-alpine/Dockerfile*)](https://github.com/docker-library/wordpress/blob/cb50cbaabba8eea67ea6a1f7702a7a1e238f10b9/php7.2/fpm-alpine/Dockerfile) +- [`4.9.8-php5.6-apache`, `4.9-php5.6-apache`, `4-php5.6-apache`, `php5.6-apache`, `4.9.8-php5.6`, `4.9-php5.6`, `4-php5.6`, `php5.6` (*php5.6/apache/Dockerfile*)](https://github.com/docker-library/wordpress/blob/913115b209407ae0ed9d38a13e8e5d8b909b431f/php5.6/apache/Dockerfile) +- [`4.9.8-php5.6-fpm`, `4.9-php5.6-fpm`, `4-php5.6-fpm`, `php5.6-fpm` (*php5.6/fpm/Dockerfile*)](https://github.com/docker-library/wordpress/blob/913115b209407ae0ed9d38a13e8e5d8b909b431f/php5.6/fpm/Dockerfile) +- [`4.9.8-php5.6-fpm-alpine`, `4.9-php5.6-fpm-alpine`, `4-php5.6-fpm-alpine`, `php5.6-fpm-alpine` (*php5.6/fpm-alpine/Dockerfile*)](https://github.com/docker-library/wordpress/blob/913115b209407ae0ed9d38a13e8e5d8b909b431f/php5.6/fpm-alpine/Dockerfile) +- [`4.9.8-php7.0-apache`, `4.9-php7.0-apache`, `4-php7.0-apache`, `php7.0-apache`, `4.9.8-php7.0`, `4.9-php7.0`, `4-php7.0`, `php7.0` (*php7.0/apache/Dockerfile*)](https://github.com/docker-library/wordpress/blob/913115b209407ae0ed9d38a13e8e5d8b909b431f/php7.0/apache/Dockerfile) +- [`4.9.8-php7.0-fpm`, `4.9-php7.0-fpm`, `4-php7.0-fpm`, `php7.0-fpm` (*php7.0/fpm/Dockerfile*)](https://github.com/docker-library/wordpress/blob/913115b209407ae0ed9d38a13e8e5d8b909b431f/php7.0/fpm/Dockerfile) +- [`4.9.8-php7.0-fpm-alpine`, `4.9-php7.0-fpm-alpine`, `4-php7.0-fpm-alpine`, `php7.0-fpm-alpine` (*php7.0/fpm-alpine/Dockerfile*)](https://github.com/docker-library/wordpress/blob/913115b209407ae0ed9d38a13e8e5d8b909b431f/php7.0/fpm-alpine/Dockerfile) +- [`4.9.8-php7.1-apache`, `4.9-php7.1-apache`, `4-php7.1-apache`, `php7.1-apache`, `4.9.8-php7.1`, `4.9-php7.1`, `4-php7.1`, `php7.1` (*php7.1/apache/Dockerfile*)](https://github.com/docker-library/wordpress/blob/913115b209407ae0ed9d38a13e8e5d8b909b431f/php7.1/apache/Dockerfile) +- [`4.9.8-php7.1-fpm`, `4.9-php7.1-fpm`, `4-php7.1-fpm`, `php7.1-fpm` (*php7.1/fpm/Dockerfile*)](https://github.com/docker-library/wordpress/blob/913115b209407ae0ed9d38a13e8e5d8b909b431f/php7.1/fpm/Dockerfile) +- [`4.9.8-php7.1-fpm-alpine`, `4.9-php7.1-fpm-alpine`, `4-php7.1-fpm-alpine`, `php7.1-fpm-alpine` (*php7.1/fpm-alpine/Dockerfile*)](https://github.com/docker-library/wordpress/blob/913115b209407ae0ed9d38a13e8e5d8b909b431f/php7.1/fpm-alpine/Dockerfile) +- [`4.9.8-apache`, `4.9-apache`, `4-apache`, `apache`, `4.9.8`, `4.9`, `4`, `latest`, `4.9.8-php7.2-apache`, `4.9-php7.2-apache`, `4-php7.2-apache`, `php7.2-apache`, `4.9.8-php7.2`, `4.9-php7.2`, `4-php7.2`, `php7.2` (*php7.2/apache/Dockerfile*)](https://github.com/docker-library/wordpress/blob/913115b209407ae0ed9d38a13e8e5d8b909b431f/php7.2/apache/Dockerfile) +- [`4.9.8-fpm`, `4.9-fpm`, `4-fpm`, `fpm`, `4.9.8-php7.2-fpm`, `4.9-php7.2-fpm`, `4-php7.2-fpm`, `php7.2-fpm` (*php7.2/fpm/Dockerfile*)](https://github.com/docker-library/wordpress/blob/913115b209407ae0ed9d38a13e8e5d8b909b431f/php7.2/fpm/Dockerfile) +- [`4.9.8-fpm-alpine`, `4.9-fpm-alpine`, `4-fpm-alpine`, `fpm-alpine`, `4.9.8-php7.2-fpm-alpine`, `4.9-php7.2-fpm-alpine`, `4-php7.2-fpm-alpine`, `php7.2-fpm-alpine` (*php7.2/fpm-alpine/Dockerfile*)](https://github.com/docker-library/wordpress/blob/913115b209407ae0ed9d38a13e8e5d8b909b431f/php7.2/fpm-alpine/Dockerfile) - [`cli-2.0.1-php5.6`, `cli-2.0-php5.6`, `cli-2-php5.6`, `cli-php5.6` (*php5.6/cli/Dockerfile*)](https://github.com/docker-library/wordpress/blob/c5dcf1a2d8d894a5b1ed1c7218e444dc342bd7b4/php5.6/cli/Dockerfile) - [`cli-2.0.1-php7.0`, `cli-2.0-php7.0`, `cli-2-php7.0`, `cli-php7.0` (*php7.0/cli/Dockerfile*)](https://github.com/docker-library/wordpress/blob/c5dcf1a2d8d894a5b1ed1c7218e444dc342bd7b4/php7.0/cli/Dockerfile) - [`cli-2.0.1-php7.1`, `cli-2.0-php7.1`, `cli-2-php7.1`, `cli-php7.1` (*php7.1/cli/Dockerfile*)](https://github.com/docker-library/wordpress/blob/c5dcf1a2d8d894a5b1ed1c7218e444dc342bd7b4/php7.1/cli/Dockerfile)