Run update.sh

This commit is contained in:
Docker Library Bot 2019-02-26 21:13:13 +00:00
parent d466a014eb
commit 2e5f82345f
4 changed files with 148 additions and 155 deletions

View File

@ -55,107 +55,131 @@ You can read more about Composer in our [official documentation](https://getcomp
![logo](https://raw.githubusercontent.com/docker-library/docs/58f7363e6cfa78f8cd54af16eab51c63c1232002/composer/logo.png)
# Using
# How to use this image
Run the `composer` image:
### Basic usage
```sh
docker run --rm --interactive --tty \
--volume $PWD:/app \
composer install
Running the `composer` image is as simple as follows:
```console
$ docker run --rm --interactive --tty \
--volume $PWD:/app \
composer install
```
You can mount the Composer home directory from your host inside the Container to share caching and configuration files:
### Persistent cache / global configuration
```sh
docker run --rm --interactive --tty \
--volume $PWD:/app \
--volume $COMPOSER_HOME:/tmp \
composer install
You can bind mount the Composer home directory from your host to the container to enable a persistent cache or share global configuration:
```console
$ docker run --rm --interactive --tty \
--volume $PWD:/app \
--volume $COMPOSER_HOME:/tmp \
composer install
```
By default, Composer runs as root inside the container. This can lead to permission issues on your host filesystem. You can run Composer as your local user:
**Note:** this relies on the fact that the `COMPOSER_HOME` value is set to `/tmp` in the image by default.
```sh
docker run --rm --interactive --tty \
--volume $PWD:/app \
--user $(id -u):$(id -g) \
composer install
Or if you are following the XDG specification:
```console
$ COMPOSER_HOME=$HOME/.config/composer \
COMPOSER_CACHE_DIR=$HOME/.cache/composer \
docker run --rm --interactive --tty \
--env COMPOSER_HOME \
--env COMPOSER_CACHE_DIR \
--volume $COMPOSER_HOME:$COMPOSER_HOME \
--volume $COMPOSER_CACHE_DIR:$COMPOSER_CACHE_DIR \
--volume $PWD:/app \
composer install
```
### Filesystem permissions
By default, Composer runs as root inside the container. This can lead to permission issues on your host filesystem. You can work around this by running the container with a different user:
```console
$ docker run --rm --interactive --tty \
--volume $PWD:/app \
--user $(id -u):$(id -g) \
composer install
```
### Private repositories / SSH agent
When you need to access private repositories, you will either need to share your configured credentials, or mount your `ssh-agent` socket inside the running container:
```console
$ docker run --rm --interactive --tty \
--volume $PWD:/app \
--volume $SSH_AUTH_SOCK:/ssh-auth.sock \
--env SSH_AUTH_SOCK=/ssh-auth.sock \
composer install
```
**Note:** This currently does not work on OSX, see [docker/for-mac#410](https://github.com/docker/for-mac/issues/410).
```sh
docker run --rm --interactive --tty \
--volume $PWD:/app \
--volume $SSH_AUTH_SOCK:/ssh-auth.sock \
--env SSH_AUTH_SOCK=/ssh-auth.sock \
composer install
When combining the use of private repositories with running Composer as another user, you might run into non-existent user errors (thrown by ssh). To work around this, simply mount the host passwd and group files (read-only) into the container:
```console
$ docker run --rm --interactive --tty \
--volume $PWD:/app \
--volume $SSH_AUTH_SOCK:/ssh-auth.sock \
--volume /etc/passwd:/etc/passwd:ro \
--volume /etc/group:/etc/group:ro \
--env SSH_AUTH_SOCK=/ssh-auth.sock \
--user $(id -u):$(id -g) \
composer install
```
When combining the use of private repositories with running Composer as another (local) user, you might run into non-existant user errors (thrown by ssh). To work around this, simply mount the host passwd and group files (read-only) into the container:
# Troubleshooting
```sh
docker run --rm --interactive --tty \
--volume $PWD:/app \
--volume $SSH_AUTH_SOCK:/ssh-auth.sock \
--volume /etc/passwd:/etc/passwd:ro \
--volume /etc/group:/etc/group:ro \
--user $(id -u):$(id -g) \
--env SSH_AUTH_SOCK=/ssh-auth.sock \
composer install
```
### PHP versions
## Suggestions
Our image is aimed at quickly running Composer without the need for having a PHP runtime installed. You should not rely on the PHP version in our container. We do not provide a Composer image for each supported PHP version because we do not want to encourage using Composer as a base image or a production image.
### PHP Extensions
Suggestions:
We aim to deliver an image that is as lean as possible, built for running Composer only.
- use [`--ignore-platform-reqs`](https://getcomposer.org/doc/03-cli.md#install-i):
Sometimes dependencies or Composer [scripts](https://getcomposer.org/doc/articles/scripts.md) require the availability of certain PHP extensions. You can work around this as follows:
- Pass the `--ignore-platform-reqs` and `--no-scripts` flags to `install` or `update`:
```sh
docker run --rm --interactive --tty \
--volume $PWD:/app \
composer install --ignore-platform-reqs --no-scripts
```console
$ composer install --ignore-platform-reqs
```
- Create your own image (possibly by extending `FROM composer`).
- specify the target [platform](https://getcomposer.org/doc/06-config.md#platform) in your `composer.json`:
**Note:** Docker introduced [multi-stage](https://docs.docker.com/engine/userguide/eng-image/multistage-build/) builds in 17.05:
```json
{
"config": {
"platform": {
"php": "7.1.3"
}
}
}
```
- Create your own image, and copy Composer from the official image into it:
### PHP extensions
We aim to deliver an image that is as lean as possible, built for running Composer only. Sometimes dependencies or Composer [scripts](https://getcomposer.org/doc/articles/scripts.md) require the availability of certain PHP extensions.
Suggestions:
- pass the `--ignore-platform-reqs` and / or `--no-scripts` flags to `install` or `update`:
```console
$ docker run --rm --interactive --tty \
--volume $PWD:/app \
composer install --ignore-platform-reqs --no-scripts
```
- create your own buid image and [install](https://getcomposer.org/doc/faqs/how-to-install-composer-programmatically.md) Composer inside it.
**Note:** Docker 17.05 introduced [multi-stage builds](https://docs.docker.com/develop/develop-images/multistage-build/), simplifying this enormously:
```dockerfile
COPY --from=composer:1.5 /usr/bin/composer /usr/bin/composer
COPY --from=composer /usr/bin/composer /usr/bin/composer
```
It is highly recommended that you create a "build" image that extends from your baseline production image. Binaries such as Composer should not end up in your production environment.
### Local runtime/binary
If you want to be able to run `composer` as if it was installed on your host locally, you can define the following function in your `~/.bashrc`, `~/.zshrc` or similar:
```sh
composer () {
tty=
tty -s && tty=--tty
docker run \
$tty \
--interactive \
--rm \
--user $(id -u):$(id -g) \
--volume /etc/passwd:/etc/passwd:ro \
--volume /etc/group:/etc/group:ro \
--volume $(pwd):/app \
composer "$@"
}
```
# License
View [license information](https://github.com/composer/composer/blob/master/LICENSE) for the software contained in this image.

View File

@ -18,72 +18,50 @@ WARNING:
## Simple Tags
- [`1.12rc1-stretch`, `1.12-rc-stretch`, `rc-stretch` (*1.12-rc/stretch/Dockerfile*)](https://github.com/docker-library/golang/blob/d9eeb1f6fa4d19f63dc1e845c01442738f22320f/1.12-rc/stretch/Dockerfile)
- [`1.12rc1-alpine3.9`, `1.12-rc-alpine3.9`, `rc-alpine3.9`, `1.12rc1-alpine`, `1.12-rc-alpine`, `rc-alpine` (*1.12-rc/alpine3.9/Dockerfile*)](https://github.com/docker-library/golang/blob/d9eeb1f6fa4d19f63dc1e845c01442738f22320f/1.12-rc/alpine3.9/Dockerfile)
- [`1.12rc1-alpine3.8`, `1.12-rc-alpine3.8`, `rc-alpine3.8` (*1.12-rc/alpine3.8/Dockerfile*)](https://github.com/docker-library/golang/blob/d9eeb1f6fa4d19f63dc1e845c01442738f22320f/1.12-rc/alpine3.8/Dockerfile)
- [`1.12rc1-windowsservercore-ltsc2016`, `1.12-rc-windowsservercore-ltsc2016`, `rc-windowsservercore-ltsc2016` (*1.12-rc/windows/windowsservercore-ltsc2016/Dockerfile*)](https://github.com/docker-library/golang/blob/d9eeb1f6fa4d19f63dc1e845c01442738f22320f/1.12-rc/windows/windowsservercore-ltsc2016/Dockerfile)
- [`1.12rc1-windowsservercore-1709`, `1.12-rc-windowsservercore-1709`, `rc-windowsservercore-1709` (*1.12-rc/windows/windowsservercore-1709/Dockerfile*)](https://github.com/docker-library/golang/blob/d9eeb1f6fa4d19f63dc1e845c01442738f22320f/1.12-rc/windows/windowsservercore-1709/Dockerfile)
- [`1.12rc1-windowsservercore-1803`, `1.12-rc-windowsservercore-1803`, `rc-windowsservercore-1803` (*1.12-rc/windows/windowsservercore-1803/Dockerfile*)](https://github.com/docker-library/golang/blob/d9eeb1f6fa4d19f63dc1e845c01442738f22320f/1.12-rc/windows/windowsservercore-1803/Dockerfile)
- [`1.12rc1-windowsservercore-1809`, `1.12-rc-windowsservercore-1809`, `rc-windowsservercore-1809` (*1.12-rc/windows/windowsservercore-1809/Dockerfile*)](https://github.com/docker-library/golang/blob/d9eeb1f6fa4d19f63dc1e845c01442738f22320f/1.12-rc/windows/windowsservercore-1809/Dockerfile)
- [`1.12rc1-nanoserver-sac2016`, `1.12-rc-nanoserver-sac2016`, `rc-nanoserver-sac2016` (*1.12-rc/windows/nanoserver-sac2016/Dockerfile*)](https://github.com/docker-library/golang/blob/d9eeb1f6fa4d19f63dc1e845c01442738f22320f/1.12-rc/windows/nanoserver-sac2016/Dockerfile)
- [`1.11.5-stretch`, `1.11-stretch`, `1-stretch`, `stretch` (*1.11/stretch/Dockerfile*)](https://github.com/docker-library/golang/blob/2e795f515357c575359f0720acaf7f5490f8bcf5/1.11/stretch/Dockerfile)
- [`1.11.5-alpine3.9`, `1.11-alpine3.9`, `1-alpine3.9`, `alpine3.9`, `1.11.5-alpine`, `1.11-alpine`, `1-alpine`, `alpine` (*1.11/alpine3.9/Dockerfile*)](https://github.com/docker-library/golang/blob/7967b894abc1ff563e2d854afd9beabd37def26c/1.11/alpine3.9/Dockerfile)
- [`1.11.5-alpine3.8`, `1.11-alpine3.8`, `1-alpine3.8`, `alpine3.8` (*1.11/alpine3.8/Dockerfile*)](https://github.com/docker-library/golang/blob/2e795f515357c575359f0720acaf7f5490f8bcf5/1.11/alpine3.8/Dockerfile)
- [`1.11.5-windowsservercore-ltsc2016`, `1.11-windowsservercore-ltsc2016`, `1-windowsservercore-ltsc2016`, `windowsservercore-ltsc2016` (*1.11/windows/windowsservercore-ltsc2016/Dockerfile*)](https://github.com/docker-library/golang/blob/2e795f515357c575359f0720acaf7f5490f8bcf5/1.11/windows/windowsservercore-ltsc2016/Dockerfile)
- [`1.11.5-windowsservercore-1709`, `1.11-windowsservercore-1709`, `1-windowsservercore-1709`, `windowsservercore-1709` (*1.11/windows/windowsservercore-1709/Dockerfile*)](https://github.com/docker-library/golang/blob/2e795f515357c575359f0720acaf7f5490f8bcf5/1.11/windows/windowsservercore-1709/Dockerfile)
- [`1.11.5-windowsservercore-1803`, `1.11-windowsservercore-1803`, `1-windowsservercore-1803`, `windowsservercore-1803` (*1.11/windows/windowsservercore-1803/Dockerfile*)](https://github.com/docker-library/golang/blob/2e795f515357c575359f0720acaf7f5490f8bcf5/1.11/windows/windowsservercore-1803/Dockerfile)
- [`1.11.5-windowsservercore-1809`, `1.11-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809` (*1.11/windows/windowsservercore-1809/Dockerfile*)](https://github.com/docker-library/golang/blob/2e795f515357c575359f0720acaf7f5490f8bcf5/1.11/windows/windowsservercore-1809/Dockerfile)
- [`1.11.5-nanoserver-sac2016`, `1.11-nanoserver-sac2016`, `1-nanoserver-sac2016`, `nanoserver-sac2016` (*1.11/windows/nanoserver-sac2016/Dockerfile*)](https://github.com/docker-library/golang/blob/2e795f515357c575359f0720acaf7f5490f8bcf5/1.11/windows/nanoserver-sac2016/Dockerfile)
- [`1.10.8-stretch`, `1.10-stretch` (*1.10/stretch/Dockerfile*)](https://github.com/docker-library/golang/blob/2e795f515357c575359f0720acaf7f5490f8bcf5/1.10/stretch/Dockerfile)
- [`1.10.8-alpine3.9`, `1.10-alpine3.9`, `1.10.8-alpine`, `1.10-alpine` (*1.10/alpine3.9/Dockerfile*)](https://github.com/docker-library/golang/blob/7967b894abc1ff563e2d854afd9beabd37def26c/1.10/alpine3.9/Dockerfile)
- [`1.10.8-alpine3.8`, `1.10-alpine3.8` (*1.10/alpine3.8/Dockerfile*)](https://github.com/docker-library/golang/blob/2e795f515357c575359f0720acaf7f5490f8bcf5/1.10/alpine3.8/Dockerfile)
- [`1.10.8-windowsservercore-ltsc2016`, `1.10-windowsservercore-ltsc2016` (*1.10/windows/windowsservercore-ltsc2016/Dockerfile*)](https://github.com/docker-library/golang/blob/2e795f515357c575359f0720acaf7f5490f8bcf5/1.10/windows/windowsservercore-ltsc2016/Dockerfile)
- [`1.10.8-windowsservercore-1709`, `1.10-windowsservercore-1709` (*1.10/windows/windowsservercore-1709/Dockerfile*)](https://github.com/docker-library/golang/blob/2e795f515357c575359f0720acaf7f5490f8bcf5/1.10/windows/windowsservercore-1709/Dockerfile)
- [`1.10.8-windowsservercore-1803`, `1.10-windowsservercore-1803` (*1.10/windows/windowsservercore-1803/Dockerfile*)](https://github.com/docker-library/golang/blob/2e795f515357c575359f0720acaf7f5490f8bcf5/1.10/windows/windowsservercore-1803/Dockerfile)
- [`1.10.8-windowsservercore-1809`, `1.10-windowsservercore-1809` (*1.10/windows/windowsservercore-1809/Dockerfile*)](https://github.com/docker-library/golang/blob/2e795f515357c575359f0720acaf7f5490f8bcf5/1.10/windows/windowsservercore-1809/Dockerfile)
- [`1.10.8-nanoserver-sac2016`, `1.10-nanoserver-sac2016` (*1.10/windows/nanoserver-sac2016/Dockerfile*)](https://github.com/docker-library/golang/blob/2e795f515357c575359f0720acaf7f5490f8bcf5/1.10/windows/nanoserver-sac2016/Dockerfile)
- [`1.12.0-stretch`, `1.12-stretch`, `1-stretch`, `stretch` (*1.12/stretch/Dockerfile*)](https://github.com/docker-library/golang/blob/ff7c350f627c6724e9bffa19f519545a5997a924/1.12/stretch/Dockerfile)
- [`1.12.0-alpine3.9`, `1.12-alpine3.9`, `1-alpine3.9`, `alpine3.9`, `1.12.0-alpine`, `1.12-alpine`, `1-alpine`, `alpine` (*1.12/alpine3.9/Dockerfile*)](https://github.com/docker-library/golang/blob/ff7c350f627c6724e9bffa19f519545a5997a924/1.12/alpine3.9/Dockerfile)
- [`1.12.0-windowsservercore-ltsc2016`, `1.12-windowsservercore-ltsc2016`, `1-windowsservercore-ltsc2016`, `windowsservercore-ltsc2016` (*1.12/windows/windowsservercore-ltsc2016/Dockerfile*)](https://github.com/docker-library/golang/blob/ff7c350f627c6724e9bffa19f519545a5997a924/1.12/windows/windowsservercore-ltsc2016/Dockerfile)
- [`1.12.0-windowsservercore-1709`, `1.12-windowsservercore-1709`, `1-windowsservercore-1709`, `windowsservercore-1709` (*1.12/windows/windowsservercore-1709/Dockerfile*)](https://github.com/docker-library/golang/blob/ff7c350f627c6724e9bffa19f519545a5997a924/1.12/windows/windowsservercore-1709/Dockerfile)
- [`1.12.0-windowsservercore-1803`, `1.12-windowsservercore-1803`, `1-windowsservercore-1803`, `windowsservercore-1803` (*1.12/windows/windowsservercore-1803/Dockerfile*)](https://github.com/docker-library/golang/blob/ff7c350f627c6724e9bffa19f519545a5997a924/1.12/windows/windowsservercore-1803/Dockerfile)
- [`1.12.0-windowsservercore-1809`, `1.12-windowsservercore-1809`, `1-windowsservercore-1809`, `windowsservercore-1809` (*1.12/windows/windowsservercore-1809/Dockerfile*)](https://github.com/docker-library/golang/blob/ff7c350f627c6724e9bffa19f519545a5997a924/1.12/windows/windowsservercore-1809/Dockerfile)
- [`1.12.0-nanoserver-sac2016`, `1.12-nanoserver-sac2016`, `1-nanoserver-sac2016`, `nanoserver-sac2016` (*1.12/windows/nanoserver-sac2016/Dockerfile*)](https://github.com/docker-library/golang/blob/ff7c350f627c6724e9bffa19f519545a5997a924/1.12/windows/nanoserver-sac2016/Dockerfile)
- [`1.11.5-stretch`, `1.11-stretch` (*1.11/stretch/Dockerfile*)](https://github.com/docker-library/golang/blob/2e795f515357c575359f0720acaf7f5490f8bcf5/1.11/stretch/Dockerfile)
- [`1.11.5-alpine3.9`, `1.11-alpine3.9`, `1.11.5-alpine`, `1.11-alpine` (*1.11/alpine3.9/Dockerfile*)](https://github.com/docker-library/golang/blob/7967b894abc1ff563e2d854afd9beabd37def26c/1.11/alpine3.9/Dockerfile)
- [`1.11.5-alpine3.8`, `1.11-alpine3.8` (*1.11/alpine3.8/Dockerfile*)](https://github.com/docker-library/golang/blob/2e795f515357c575359f0720acaf7f5490f8bcf5/1.11/alpine3.8/Dockerfile)
- [`1.11.5-windowsservercore-ltsc2016`, `1.11-windowsservercore-ltsc2016` (*1.11/windows/windowsservercore-ltsc2016/Dockerfile*)](https://github.com/docker-library/golang/blob/2e795f515357c575359f0720acaf7f5490f8bcf5/1.11/windows/windowsservercore-ltsc2016/Dockerfile)
- [`1.11.5-windowsservercore-1709`, `1.11-windowsservercore-1709` (*1.11/windows/windowsservercore-1709/Dockerfile*)](https://github.com/docker-library/golang/blob/2e795f515357c575359f0720acaf7f5490f8bcf5/1.11/windows/windowsservercore-1709/Dockerfile)
- [`1.11.5-windowsservercore-1803`, `1.11-windowsservercore-1803` (*1.11/windows/windowsservercore-1803/Dockerfile*)](https://github.com/docker-library/golang/blob/2e795f515357c575359f0720acaf7f5490f8bcf5/1.11/windows/windowsservercore-1803/Dockerfile)
- [`1.11.5-windowsservercore-1809`, `1.11-windowsservercore-1809` (*1.11/windows/windowsservercore-1809/Dockerfile*)](https://github.com/docker-library/golang/blob/2e795f515357c575359f0720acaf7f5490f8bcf5/1.11/windows/windowsservercore-1809/Dockerfile)
- [`1.11.5-nanoserver-sac2016`, `1.11-nanoserver-sac2016` (*1.11/windows/nanoserver-sac2016/Dockerfile*)](https://github.com/docker-library/golang/blob/2e795f515357c575359f0720acaf7f5490f8bcf5/1.11/windows/nanoserver-sac2016/Dockerfile)
## Shared Tags
- `1.12rc1`, `1.12-rc`, `rc`:
- [`1.12rc1-stretch` (*1.12-rc/stretch/Dockerfile*)](https://github.com/docker-library/golang/blob/d9eeb1f6fa4d19f63dc1e845c01442738f22320f/1.12-rc/stretch/Dockerfile)
- [`1.12rc1-windowsservercore-ltsc2016` (*1.12-rc/windows/windowsservercore-ltsc2016/Dockerfile*)](https://github.com/docker-library/golang/blob/d9eeb1f6fa4d19f63dc1e845c01442738f22320f/1.12-rc/windows/windowsservercore-ltsc2016/Dockerfile)
- [`1.12rc1-windowsservercore-1709` (*1.12-rc/windows/windowsservercore-1709/Dockerfile*)](https://github.com/docker-library/golang/blob/d9eeb1f6fa4d19f63dc1e845c01442738f22320f/1.12-rc/windows/windowsservercore-1709/Dockerfile)
- [`1.12rc1-windowsservercore-1803` (*1.12-rc/windows/windowsservercore-1803/Dockerfile*)](https://github.com/docker-library/golang/blob/d9eeb1f6fa4d19f63dc1e845c01442738f22320f/1.12-rc/windows/windowsservercore-1803/Dockerfile)
- [`1.12rc1-windowsservercore-1809` (*1.12-rc/windows/windowsservercore-1809/Dockerfile*)](https://github.com/docker-library/golang/blob/d9eeb1f6fa4d19f63dc1e845c01442738f22320f/1.12-rc/windows/windowsservercore-1809/Dockerfile)
- `1.12rc1-windowsservercore`, `1.12-rc-windowsservercore`, `rc-windowsservercore`:
- [`1.12rc1-windowsservercore-ltsc2016` (*1.12-rc/windows/windowsservercore-ltsc2016/Dockerfile*)](https://github.com/docker-library/golang/blob/d9eeb1f6fa4d19f63dc1e845c01442738f22320f/1.12-rc/windows/windowsservercore-ltsc2016/Dockerfile)
- [`1.12rc1-windowsservercore-1709` (*1.12-rc/windows/windowsservercore-1709/Dockerfile*)](https://github.com/docker-library/golang/blob/d9eeb1f6fa4d19f63dc1e845c01442738f22320f/1.12-rc/windows/windowsservercore-1709/Dockerfile)
- [`1.12rc1-windowsservercore-1803` (*1.12-rc/windows/windowsservercore-1803/Dockerfile*)](https://github.com/docker-library/golang/blob/d9eeb1f6fa4d19f63dc1e845c01442738f22320f/1.12-rc/windows/windowsservercore-1803/Dockerfile)
- [`1.12rc1-windowsservercore-1809` (*1.12-rc/windows/windowsservercore-1809/Dockerfile*)](https://github.com/docker-library/golang/blob/d9eeb1f6fa4d19f63dc1e845c01442738f22320f/1.12-rc/windows/windowsservercore-1809/Dockerfile)
- `1.12rc1-nanoserver`, `1.12-rc-nanoserver`, `rc-nanoserver`:
- [`1.12rc1-nanoserver-sac2016` (*1.12-rc/windows/nanoserver-sac2016/Dockerfile*)](https://github.com/docker-library/golang/blob/d9eeb1f6fa4d19f63dc1e845c01442738f22320f/1.12-rc/windows/nanoserver-sac2016/Dockerfile)
- `1.11.5`, `1.11`, `1`, `latest`:
- `1.12.0`, `1.12`, `1`, `latest`:
- [`1.12.0-stretch` (*1.12/stretch/Dockerfile*)](https://github.com/docker-library/golang/blob/ff7c350f627c6724e9bffa19f519545a5997a924/1.12/stretch/Dockerfile)
- [`1.12.0-windowsservercore-ltsc2016` (*1.12/windows/windowsservercore-ltsc2016/Dockerfile*)](https://github.com/docker-library/golang/blob/ff7c350f627c6724e9bffa19f519545a5997a924/1.12/windows/windowsservercore-ltsc2016/Dockerfile)
- [`1.12.0-windowsservercore-1709` (*1.12/windows/windowsservercore-1709/Dockerfile*)](https://github.com/docker-library/golang/blob/ff7c350f627c6724e9bffa19f519545a5997a924/1.12/windows/windowsservercore-1709/Dockerfile)
- [`1.12.0-windowsservercore-1803` (*1.12/windows/windowsservercore-1803/Dockerfile*)](https://github.com/docker-library/golang/blob/ff7c350f627c6724e9bffa19f519545a5997a924/1.12/windows/windowsservercore-1803/Dockerfile)
- [`1.12.0-windowsservercore-1809` (*1.12/windows/windowsservercore-1809/Dockerfile*)](https://github.com/docker-library/golang/blob/ff7c350f627c6724e9bffa19f519545a5997a924/1.12/windows/windowsservercore-1809/Dockerfile)
- `1.12.0-windowsservercore`, `1.12-windowsservercore`, `1-windowsservercore`, `windowsservercore`:
- [`1.12.0-windowsservercore-ltsc2016` (*1.12/windows/windowsservercore-ltsc2016/Dockerfile*)](https://github.com/docker-library/golang/blob/ff7c350f627c6724e9bffa19f519545a5997a924/1.12/windows/windowsservercore-ltsc2016/Dockerfile)
- [`1.12.0-windowsservercore-1709` (*1.12/windows/windowsservercore-1709/Dockerfile*)](https://github.com/docker-library/golang/blob/ff7c350f627c6724e9bffa19f519545a5997a924/1.12/windows/windowsservercore-1709/Dockerfile)
- [`1.12.0-windowsservercore-1803` (*1.12/windows/windowsservercore-1803/Dockerfile*)](https://github.com/docker-library/golang/blob/ff7c350f627c6724e9bffa19f519545a5997a924/1.12/windows/windowsservercore-1803/Dockerfile)
- [`1.12.0-windowsservercore-1809` (*1.12/windows/windowsservercore-1809/Dockerfile*)](https://github.com/docker-library/golang/blob/ff7c350f627c6724e9bffa19f519545a5997a924/1.12/windows/windowsservercore-1809/Dockerfile)
- `1.12.0-nanoserver`, `1.12-nanoserver`, `1-nanoserver`, `nanoserver`:
- [`1.12.0-nanoserver-sac2016` (*1.12/windows/nanoserver-sac2016/Dockerfile*)](https://github.com/docker-library/golang/blob/ff7c350f627c6724e9bffa19f519545a5997a924/1.12/windows/nanoserver-sac2016/Dockerfile)
- `1.11.5`, `1.11`:
- [`1.11.5-stretch` (*1.11/stretch/Dockerfile*)](https://github.com/docker-library/golang/blob/2e795f515357c575359f0720acaf7f5490f8bcf5/1.11/stretch/Dockerfile)
- [`1.11.5-windowsservercore-ltsc2016` (*1.11/windows/windowsservercore-ltsc2016/Dockerfile*)](https://github.com/docker-library/golang/blob/2e795f515357c575359f0720acaf7f5490f8bcf5/1.11/windows/windowsservercore-ltsc2016/Dockerfile)
- [`1.11.5-windowsservercore-1709` (*1.11/windows/windowsservercore-1709/Dockerfile*)](https://github.com/docker-library/golang/blob/2e795f515357c575359f0720acaf7f5490f8bcf5/1.11/windows/windowsservercore-1709/Dockerfile)
- [`1.11.5-windowsservercore-1803` (*1.11/windows/windowsservercore-1803/Dockerfile*)](https://github.com/docker-library/golang/blob/2e795f515357c575359f0720acaf7f5490f8bcf5/1.11/windows/windowsservercore-1803/Dockerfile)
- [`1.11.5-windowsservercore-1809` (*1.11/windows/windowsservercore-1809/Dockerfile*)](https://github.com/docker-library/golang/blob/2e795f515357c575359f0720acaf7f5490f8bcf5/1.11/windows/windowsservercore-1809/Dockerfile)
- `1.11.5-windowsservercore`, `1.11-windowsservercore`, `1-windowsservercore`, `windowsservercore`:
- `1.11.5-windowsservercore`, `1.11-windowsservercore`:
- [`1.11.5-windowsservercore-ltsc2016` (*1.11/windows/windowsservercore-ltsc2016/Dockerfile*)](https://github.com/docker-library/golang/blob/2e795f515357c575359f0720acaf7f5490f8bcf5/1.11/windows/windowsservercore-ltsc2016/Dockerfile)
- [`1.11.5-windowsservercore-1709` (*1.11/windows/windowsservercore-1709/Dockerfile*)](https://github.com/docker-library/golang/blob/2e795f515357c575359f0720acaf7f5490f8bcf5/1.11/windows/windowsservercore-1709/Dockerfile)
- [`1.11.5-windowsservercore-1803` (*1.11/windows/windowsservercore-1803/Dockerfile*)](https://github.com/docker-library/golang/blob/2e795f515357c575359f0720acaf7f5490f8bcf5/1.11/windows/windowsservercore-1803/Dockerfile)
- [`1.11.5-windowsservercore-1809` (*1.11/windows/windowsservercore-1809/Dockerfile*)](https://github.com/docker-library/golang/blob/2e795f515357c575359f0720acaf7f5490f8bcf5/1.11/windows/windowsservercore-1809/Dockerfile)
- `1.11.5-nanoserver`, `1.11-nanoserver`, `1-nanoserver`, `nanoserver`:
- `1.11.5-nanoserver`, `1.11-nanoserver`:
- [`1.11.5-nanoserver-sac2016` (*1.11/windows/nanoserver-sac2016/Dockerfile*)](https://github.com/docker-library/golang/blob/2e795f515357c575359f0720acaf7f5490f8bcf5/1.11/windows/nanoserver-sac2016/Dockerfile)
- `1.10.8`, `1.10`:
- [`1.10.8-stretch` (*1.10/stretch/Dockerfile*)](https://github.com/docker-library/golang/blob/2e795f515357c575359f0720acaf7f5490f8bcf5/1.10/stretch/Dockerfile)
- [`1.10.8-windowsservercore-ltsc2016` (*1.10/windows/windowsservercore-ltsc2016/Dockerfile*)](https://github.com/docker-library/golang/blob/2e795f515357c575359f0720acaf7f5490f8bcf5/1.10/windows/windowsservercore-ltsc2016/Dockerfile)
- [`1.10.8-windowsservercore-1709` (*1.10/windows/windowsservercore-1709/Dockerfile*)](https://github.com/docker-library/golang/blob/2e795f515357c575359f0720acaf7f5490f8bcf5/1.10/windows/windowsservercore-1709/Dockerfile)
- [`1.10.8-windowsservercore-1803` (*1.10/windows/windowsservercore-1803/Dockerfile*)](https://github.com/docker-library/golang/blob/2e795f515357c575359f0720acaf7f5490f8bcf5/1.10/windows/windowsservercore-1803/Dockerfile)
- [`1.10.8-windowsservercore-1809` (*1.10/windows/windowsservercore-1809/Dockerfile*)](https://github.com/docker-library/golang/blob/2e795f515357c575359f0720acaf7f5490f8bcf5/1.10/windows/windowsservercore-1809/Dockerfile)
- `1.10.8-windowsservercore`, `1.10-windowsservercore`:
- [`1.10.8-windowsservercore-ltsc2016` (*1.10/windows/windowsservercore-ltsc2016/Dockerfile*)](https://github.com/docker-library/golang/blob/2e795f515357c575359f0720acaf7f5490f8bcf5/1.10/windows/windowsservercore-ltsc2016/Dockerfile)
- [`1.10.8-windowsservercore-1709` (*1.10/windows/windowsservercore-1709/Dockerfile*)](https://github.com/docker-library/golang/blob/2e795f515357c575359f0720acaf7f5490f8bcf5/1.10/windows/windowsservercore-1709/Dockerfile)
- [`1.10.8-windowsservercore-1803` (*1.10/windows/windowsservercore-1803/Dockerfile*)](https://github.com/docker-library/golang/blob/2e795f515357c575359f0720acaf7f5490f8bcf5/1.10/windows/windowsservercore-1803/Dockerfile)
- [`1.10.8-windowsservercore-1809` (*1.10/windows/windowsservercore-1809/Dockerfile*)](https://github.com/docker-library/golang/blob/2e795f515357c575359f0720acaf7f5490f8bcf5/1.10/windows/windowsservercore-1809/Dockerfile)
- `1.10.8-nanoserver`, `1.10-nanoserver`:
- [`1.10.8-nanoserver-sac2016` (*1.10/windows/nanoserver-sac2016/Dockerfile*)](https://github.com/docker-library/golang/blob/2e795f515357c575359f0720acaf7f5490f8bcf5/1.10/windows/nanoserver-sac2016/Dockerfile)
# Quick reference

View File

@ -16,34 +16,25 @@ WARNING:
# Supported tags and respective `Dockerfile` links
- [`beta` (*beta/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/0d54e20ffde7faf94353bcd3127364f95ef22e32/beta/Dockerfile)
- [`19.0.0.1-javaee8`, `javaee8`, `latest` (*ga/19.0.0.1/javaee8/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/0d54e20ffde7faf94353bcd3127364f95ef22e32/ga/19.0.0.1/javaee8/Dockerfile)
- [`19.0.0.1-webProfile8`, `webProfile8` (*ga/19.0.0.1/webProfile8/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/0d54e20ffde7faf94353bcd3127364f95ef22e32/ga/19.0.0.1/webProfile8/Dockerfile)
- [`19.0.0.1-microProfile1`, `microProfile1` (*ga/19.0.0.1/microProfile1/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/0d54e20ffde7faf94353bcd3127364f95ef22e32/ga/19.0.0.1/microProfile1/Dockerfile)
- [`19.0.0.1-microProfile2`, `microProfile2` (*ga/19.0.0.1/microProfile2/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/0d54e20ffde7faf94353bcd3127364f95ef22e32/ga/19.0.0.1/microProfile2/Dockerfile)
- [`19.0.0.1-springBoot2`, `springBoot2` (*ga/19.0.0.1/springBoot2/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/0d54e20ffde7faf94353bcd3127364f95ef22e32/ga/19.0.0.1/springBoot2/Dockerfile)
- [`19.0.0.1-kernel`, `kernel` (*ga/19.0.0.1/kernel/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/0d54e20ffde7faf94353bcd3127364f95ef22e32/ga/19.0.0.1/kernel/Dockerfile)
- [`19.0.0.1-springBoot1`, `springBoot1` (*ga/19.0.0.1/springBoot1/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/0d54e20ffde7faf94353bcd3127364f95ef22e32/ga/19.0.0.1/springBoot1/Dockerfile)
- [`19.0.0.1-webProfile7`, `webProfile7` (*ga/19.0.0.1/webProfile7/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/0d54e20ffde7faf94353bcd3127364f95ef22e32/ga/19.0.0.1/webProfile7/Dockerfile)
- [`19.0.0.1-javaee7`, `javaee7` (*ga/19.0.0.1/javaee7/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/0d54e20ffde7faf94353bcd3127364f95ef22e32/ga/19.0.0.1/javaee7/Dockerfile)
- [`18.0.0.4-javaee8` (*ga/18.0.0.4/javaee8/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/0d54e20ffde7faf94353bcd3127364f95ef22e32/ga/18.0.0.4/javaee8/Dockerfile)
- [`18.0.0.4-webProfile8` (*ga/18.0.0.4/webProfile8/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/0d54e20ffde7faf94353bcd3127364f95ef22e32/ga/18.0.0.4/webProfile8/Dockerfile)
- [`18.0.0.4-microProfile1` (*ga/18.0.0.4/microProfile1/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/0d54e20ffde7faf94353bcd3127364f95ef22e32/ga/18.0.0.4/microProfile1/Dockerfile)
- [`18.0.0.4-microProfile2` (*ga/18.0.0.4/microProfile2/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/0d54e20ffde7faf94353bcd3127364f95ef22e32/ga/18.0.0.4/microProfile2/Dockerfile)
- [`18.0.0.4-springBoot2` (*ga/18.0.0.4/springBoot2/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/0d54e20ffde7faf94353bcd3127364f95ef22e32/ga/18.0.0.4/springBoot2/Dockerfile)
- [`18.0.0.4-kernel` (*ga/18.0.0.4/kernel/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/0d54e20ffde7faf94353bcd3127364f95ef22e32/ga/18.0.0.4/kernel/Dockerfile)
- [`18.0.0.4-springBoot1` (*ga/18.0.0.4/springBoot1/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/0d54e20ffde7faf94353bcd3127364f95ef22e32/ga/18.0.0.4/springBoot1/Dockerfile)
- [`18.0.0.4-webProfile7` (*ga/18.0.0.4/webProfile7/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/0d54e20ffde7faf94353bcd3127364f95ef22e32/ga/18.0.0.4/webProfile7/Dockerfile)
- [`18.0.0.4-javaee7` (*ga/18.0.0.4/javaee7/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/0d54e20ffde7faf94353bcd3127364f95ef22e32/ga/18.0.0.4/javaee7/Dockerfile)
- [`18.0.0.3-javaee8` (*ga/18.0.0.3/javaee8/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/0d54e20ffde7faf94353bcd3127364f95ef22e32/ga/18.0.0.3/javaee8/Dockerfile)
- [`18.0.0.3-webProfile8` (*ga/18.0.0.3/webProfile8/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/0d54e20ffde7faf94353bcd3127364f95ef22e32/ga/18.0.0.3/webProfile8/Dockerfile)
- [`18.0.0.3-microProfile1` (*ga/18.0.0.3/microProfile1/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/0d54e20ffde7faf94353bcd3127364f95ef22e32/ga/18.0.0.3/microProfile1/Dockerfile)
- [`18.0.0.3-microProfile2` (*ga/18.0.0.3/microProfile2/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/0d54e20ffde7faf94353bcd3127364f95ef22e32/ga/18.0.0.3/microProfile2/Dockerfile)
- [`18.0.0.3-springBoot2` (*ga/18.0.0.3/springBoot2/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/0d54e20ffde7faf94353bcd3127364f95ef22e32/ga/18.0.0.3/springBoot2/Dockerfile)
- [`18.0.0.3-kernel` (*ga/18.0.0.3/kernel/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/0d54e20ffde7faf94353bcd3127364f95ef22e32/ga/18.0.0.3/kernel/Dockerfile)
- [`18.0.0.3-springBoot1` (*ga/18.0.0.3/springBoot1/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/0d54e20ffde7faf94353bcd3127364f95ef22e32/ga/18.0.0.3/springBoot1/Dockerfile)
- [`18.0.0.3-webProfile7` (*ga/18.0.0.3/webProfile7/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/0d54e20ffde7faf94353bcd3127364f95ef22e32/ga/18.0.0.3/webProfile7/Dockerfile)
- [`18.0.0.3-javaee7` (*ga/18.0.0.3/javaee7/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/0d54e20ffde7faf94353bcd3127364f95ef22e32/ga/18.0.0.3/javaee7/Dockerfile)
- [`beta` (*beta/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/14635141855a960d8df14ba5a3fbe4241b107b1a/beta/Dockerfile)
- [`19.0.0.1-javaee8`, `javaee8`, `latest` (*ga/19.0.0.1/javaee8/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/14635141855a960d8df14ba5a3fbe4241b107b1a/ga/19.0.0.1/javaee8/Dockerfile)
- [`19.0.0.1-webProfile8`, `webProfile8` (*ga/19.0.0.1/webProfile8/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/14635141855a960d8df14ba5a3fbe4241b107b1a/ga/19.0.0.1/webProfile8/Dockerfile)
- [`19.0.0.1-microProfile1`, `microProfile1` (*ga/19.0.0.1/microProfile1/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/14635141855a960d8df14ba5a3fbe4241b107b1a/ga/19.0.0.1/microProfile1/Dockerfile)
- [`19.0.0.1-microProfile2`, `microProfile2` (*ga/19.0.0.1/microProfile2/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/14635141855a960d8df14ba5a3fbe4241b107b1a/ga/19.0.0.1/microProfile2/Dockerfile)
- [`19.0.0.1-springBoot2`, `springBoot2` (*ga/19.0.0.1/springBoot2/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/14635141855a960d8df14ba5a3fbe4241b107b1a/ga/19.0.0.1/springBoot2/Dockerfile)
- [`19.0.0.1-kernel`, `kernel` (*ga/19.0.0.1/kernel/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/14635141855a960d8df14ba5a3fbe4241b107b1a/ga/19.0.0.1/kernel/Dockerfile)
- [`19.0.0.1-springBoot1`, `springBoot1` (*ga/19.0.0.1/springBoot1/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/14635141855a960d8df14ba5a3fbe4241b107b1a/ga/19.0.0.1/springBoot1/Dockerfile)
- [`19.0.0.1-webProfile7`, `webProfile7` (*ga/19.0.0.1/webProfile7/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/14635141855a960d8df14ba5a3fbe4241b107b1a/ga/19.0.0.1/webProfile7/Dockerfile)
- [`19.0.0.1-javaee7`, `javaee7` (*ga/19.0.0.1/javaee7/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/14635141855a960d8df14ba5a3fbe4241b107b1a/ga/19.0.0.1/javaee7/Dockerfile)
- [`18.0.0.4-javaee8` (*ga/18.0.0.4/javaee8/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/14635141855a960d8df14ba5a3fbe4241b107b1a/ga/18.0.0.4/javaee8/Dockerfile)
- [`18.0.0.4-webProfile8` (*ga/18.0.0.4/webProfile8/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/14635141855a960d8df14ba5a3fbe4241b107b1a/ga/18.0.0.4/webProfile8/Dockerfile)
- [`18.0.0.4-microProfile1` (*ga/18.0.0.4/microProfile1/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/14635141855a960d8df14ba5a3fbe4241b107b1a/ga/18.0.0.4/microProfile1/Dockerfile)
- [`18.0.0.4-microProfile2` (*ga/18.0.0.4/microProfile2/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/14635141855a960d8df14ba5a3fbe4241b107b1a/ga/18.0.0.4/microProfile2/Dockerfile)
- [`18.0.0.4-springBoot2` (*ga/18.0.0.4/springBoot2/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/14635141855a960d8df14ba5a3fbe4241b107b1a/ga/18.0.0.4/springBoot2/Dockerfile)
- [`18.0.0.4-kernel` (*ga/18.0.0.4/kernel/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/14635141855a960d8df14ba5a3fbe4241b107b1a/ga/18.0.0.4/kernel/Dockerfile)
- [`18.0.0.4-springBoot1` (*ga/18.0.0.4/springBoot1/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/14635141855a960d8df14ba5a3fbe4241b107b1a/ga/18.0.0.4/springBoot1/Dockerfile)
- [`18.0.0.4-webProfile7` (*ga/18.0.0.4/webProfile7/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/14635141855a960d8df14ba5a3fbe4241b107b1a/ga/18.0.0.4/webProfile7/Dockerfile)
- [`18.0.0.4-javaee7` (*ga/18.0.0.4/javaee7/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/14635141855a960d8df14ba5a3fbe4241b107b1a/ga/18.0.0.4/javaee7/Dockerfile)
# Quick reference

View File

@ -18,8 +18,8 @@ WARNING:
- [`10`, `10.11`, `10.11.3`, `10-mysql-tomcat`, `mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts` (*10/mysql-tomcat/Dockerfile*)](https://github.com/xwiki-contrib/docker-xwiki/blob/9add052235a3cfa9b41770ef2ff0072772ae8a7e/10/mysql-tomcat/Dockerfile)
- [`10-postgres-tomcat`, `10.11-postgres-tomcat`, `10.11.3-postgres-tomcat`, `postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres` (*10/postgres-tomcat/Dockerfile*)](https://github.com/xwiki-contrib/docker-xwiki/blob/9add052235a3cfa9b41770ef2ff0072772ae8a7e/10/postgres-tomcat/Dockerfile)
- [`11`, `11.0`, `11.0.3`, `11-mysql-tomcat`, `11.0-mysql-tomcat`, `11.0.3-mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest` (*11/mysql-tomcat/Dockerfile*)](https://github.com/xwiki-contrib/docker-xwiki/blob/20046401f5f5a80828c97031fee09e3dae347aac/11/mysql-tomcat/Dockerfile)
- [`11-postgres-tomcat`, `11.0-postgres-tomcat`, `11.0.3-postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres` (*11/postgres-tomcat/Dockerfile*)](https://github.com/xwiki-contrib/docker-xwiki/blob/20046401f5f5a80828c97031fee09e3dae347aac/11/postgres-tomcat/Dockerfile)
- [`11`, `11.1`, `11-mysql-tomcat`, `11.1-mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest` (*11/mysql-tomcat/Dockerfile*)](https://github.com/xwiki-contrib/docker-xwiki/blob/95e9427ae1b0a7136f4090d91e0f3e51bae0ae1c/11/mysql-tomcat/Dockerfile)
- [`11-postgres-tomcat`, `11.1-postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres` (*11/postgres-tomcat/Dockerfile*)](https://github.com/xwiki-contrib/docker-xwiki/blob/95e9427ae1b0a7136f4090d91e0f3e51bae0ae1c/11/postgres-tomcat/Dockerfile)
# Quick reference