Skip to content

Commit

Permalink
Run update.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
docker-library-bot committed Apr 7, 2017
1 parent e5f12a6 commit 1e87dc1
Show file tree
Hide file tree
Showing 7 changed files with 41 additions and 24 deletions.
9 changes: 3 additions & 6 deletions drupal/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,9 @@ WARNING:

# Supported tags and respective `Dockerfile` links

- [`8.3.0-rc2-apache`, `8.3-rc-apache`, `rc-apache`, `8.3.0-rc2`, `8.3-rc`, `rc` (*8.3-rc/apache/Dockerfile*)](https://github.com/docker-library/drupal/blob/407abbdffe21637509688ec29cd761e0b56b6812/8.3-rc/apache/Dockerfile)
- [`8.3.0-rc2-fpm`, `8.3-rc-fpm`, `rc-fpm` (*8.3-rc/fpm/Dockerfile*)](https://github.com/docker-library/drupal/blob/407abbdffe21637509688ec29cd761e0b56b6812/8.3-rc/fpm/Dockerfile)
- [`8.3.0-rc2-fpm-alpine`, `8.3-rc-fpm-alpine`, `rc-fpm-alpine` (*8.3-rc/fpm-alpine/Dockerfile*)](https://github.com/docker-library/drupal/blob/407abbdffe21637509688ec29cd761e0b56b6812/8.3-rc/fpm-alpine/Dockerfile)
- [`8.2.7-apache`, `8.2-apache`, `8-apache`, `apache`, `8.2.7`, `8.2`, `8`, `latest` (*8.2/apache/Dockerfile*)](https://github.com/docker-library/drupal/blob/67dab10dcf957e66d8d257c069e40b255a5f2a7c/8.2/apache/Dockerfile)
- [`8.2.7-fpm`, `8.2-fpm`, `8-fpm`, `fpm` (*8.2/fpm/Dockerfile*)](https://github.com/docker-library/drupal/blob/67dab10dcf957e66d8d257c069e40b255a5f2a7c/8.2/fpm/Dockerfile)
- [`8.2.7-fpm-alpine`, `8.2-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine` (*8.2/fpm-alpine/Dockerfile*)](https://github.com/docker-library/drupal/blob/67dab10dcf957e66d8d257c069e40b255a5f2a7c/8.2/fpm-alpine/Dockerfile)
- [`8.3.0-apache`, `8.3-apache`, `8-apache`, `apache`, `8.3.0`, `8.3`, `8`, `latest` (*8.3/apache/Dockerfile*)](https://github.com/docker-library/drupal/blob/05987d0765ae376565194b49ec37f3f1d0bd9ab0/8.3/apache/Dockerfile)
- [`8.3.0-fpm`, `8.3-fpm`, `8-fpm`, `fpm` (*8.3/fpm/Dockerfile*)](https://github.com/docker-library/drupal/blob/05987d0765ae376565194b49ec37f3f1d0bd9ab0/8.3/fpm/Dockerfile)
- [`8.3.0-fpm-alpine`, `8.3-fpm-alpine`, `8-fpm-alpine`, `fpm-alpine` (*8.3/fpm-alpine/Dockerfile*)](https://github.com/docker-library/drupal/blob/f0e99d1b1a85b0c8ad0fddc1bb7c9a5ea53a61dc/8.3/fpm-alpine/Dockerfile)
- [`7.54-apache`, `7-apache`, `7.54`, `7` (*7/apache/Dockerfile*)](https://github.com/docker-library/drupal/blob/e8e2309427218cb2e250a3af013e8efe54703404/7/apache/Dockerfile)
- [`7.54-fpm`, `7-fpm` (*7/fpm/Dockerfile*)](https://github.com/docker-library/drupal/blob/e8e2309427218cb2e250a3af013e8efe54703404/7/fpm/Dockerfile)
- [`7.54-fpm-alpine`, `7-fpm-alpine` (*7/fpm-alpine/Dockerfile*)](https://github.com/docker-library/drupal/blob/e8e2309427218cb2e250a3af013e8efe54703404/7/fpm-alpine/Dockerfile)
Expand Down
19 changes: 18 additions & 1 deletion ghost/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ WARNING:

# Supported tags and respective `Dockerfile` links

- [`0.11.7`, `0.11`, `0`, `latest` (*Dockerfile*)](https://github.com/docker-library/ghost/blob/f57b040e28dca92eb3e1b072baa9922b12712b6c/Dockerfile)
- [`0.11.7`, `0.11`, `0`, `latest` (*debian/Dockerfile*)](https://github.com/docker-library/ghost/blob/7251ebfe67deb5452377435b0645a10fe81399b5/debian/Dockerfile)
- [`0.11.7-alpine`, `0.11-alpine`, `0-alpine`, `alpine` (*alpine/Dockerfile*)](https://github.com/docker-library/ghost/blob/7251ebfe67deb5452377435b0645a10fe81399b5/alpine/Dockerfile)

For detailed information about the published artifacts of each of the above supported tags (image metadata, transfer size, etc), please see [the `repos/ghost` directory](https://github.com/docker-library/repo-info/blob/master/repos/ghost) in [the `docker-library/repo-info` GitHub repo](https://github.com/docker-library/repo-info).

Expand Down Expand Up @@ -67,6 +68,22 @@ $ docker exec <container-id> node --version
v4.4.7
```

# Image Variants

The `ghost` images come in many flavors, each designed for a specific use case.

## `ghost:<version>`

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.

## `ghost: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.

This variant is highly recommended when final image size being as small as possible is desired. The main caveat to note is that it does use [musl libc](http://www.musl-libc.org) instead of [glibc and friends](http://www.etalabs.net/compare_libcs.html), so certain software might run into issues depending on the depth of their libc requirements. However, most software doesn't have an issue with this, so this variant is usually a very safe choice. See [this Hacker News comment thread](https://news.ycombinator.com/item?id=10782897) for more discussion of the issues that might arise and some pro/con comparisons of using Alpine-based images.

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).

# Supported Docker versions

This image is officially supported on Docker version 17.04.0-ce.
Expand Down
8 changes: 4 additions & 4 deletions mongo/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ WARNING:

# Supported tags and respective `Dockerfile` links

- [`3.0.14`, `3.0` (*3.0/Dockerfile*)](https://github.com/docker-library/mongo/blob/5fa47142887600edcd437e7689f40342b3572e71/3.0/Dockerfile)
- [`3.0.14`, `3.0` (*3.0/Dockerfile*)](https://github.com/docker-library/mongo/blob/1df3c6081a80100589b9b1185a79ccceee9f9912/3.0/Dockerfile)
- [`3.0.14-windowsservercore`, `3.0-windowsservercore` (*3.0/windows/windowsservercore/Dockerfile*)](https://github.com/docker-library/mongo/blob/a51b641c84e1a8d543b6a234a090f8263188139a/3.0/windows/windowsservercore/Dockerfile)
- [`3.2.12`, `3.2` (*3.2/Dockerfile*)](https://github.com/docker-library/mongo/blob/17f05e95936bc3ec911446ffe4c2f5889363083d/3.2/Dockerfile)
- [`3.2.12`, `3.2` (*3.2/Dockerfile*)](https://github.com/docker-library/mongo/blob/1df3c6081a80100589b9b1185a79ccceee9f9912/3.2/Dockerfile)
- [`3.2.12-windowsservercore`, `3.2-windowsservercore` (*3.2/windows/windowsservercore/Dockerfile*)](https://github.com/docker-library/mongo/blob/5c0e43ac8eba7c2fb8cc3de9542f48b31c48da14/3.2/windows/windowsservercore/Dockerfile)
- [`3.4.3`, `3.4`, `3`, `latest` (*3.4/Dockerfile*)](https://github.com/docker-library/mongo/blob/17f05e95936bc3ec911446ffe4c2f5889363083d/3.4/Dockerfile)
- [`3.4.3`, `3.4`, `3`, `latest` (*3.4/Dockerfile*)](https://github.com/docker-library/mongo/blob/1df3c6081a80100589b9b1185a79ccceee9f9912/3.4/Dockerfile)
- [`3.4.3-windowsservercore`, `3.4-windowsservercore`, `3-windowsservercore`, `windowsservercore` (*3.4/windows/windowsservercore/Dockerfile*)](https://github.com/docker-library/mongo/blob/2754d33460e0bfe196dccdccf9a8ff2b43816d00/3.4/windows/windowsservercore/Dockerfile)
- [`3.5.5`, `3.5`, `unstable` (*3.5/Dockerfile*)](https://github.com/docker-library/mongo/blob/17f05e95936bc3ec911446ffe4c2f5889363083d/3.5/Dockerfile)
- [`3.5.5`, `3.5`, `unstable` (*3.5/Dockerfile*)](https://github.com/docker-library/mongo/blob/1df3c6081a80100589b9b1185a79ccceee9f9912/3.5/Dockerfile)
- [`3.5.5-windowsservercore`, `3.5-windowsservercore`, `unstable-windowsservercore` (*3.5/windows/windowsservercore/Dockerfile*)](https://github.com/docker-library/mongo/blob/17f05e95936bc3ec911446ffe4c2f5889363083d/3.5/windows/windowsservercore/Dockerfile)

For detailed information about the published artifacts of each of the above supported tags (image metadata, transfer size, etc), please see [the `repos/mongo` directory](https://github.com/docker-library/repo-info/blob/master/repos/mongo) in [the `docker-library/repo-info` GitHub repo](https://github.com/docker-library/repo-info).
Expand Down
20 changes: 10 additions & 10 deletions postgres/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@ WARNING:

# Supported tags and respective `Dockerfile` links

- [`9.6.2`, `9.6`, `9`, `latest` (*9.6/Dockerfile*)](https://github.com/docker-library/postgres/blob/913bc48bfdccab58c6c15f11841da5146e7bf968/9.6/Dockerfile)
- [`9.6.2-alpine`, `9.6-alpine`, `9-alpine`, `alpine` (*9.6/alpine/Dockerfile*)](https://github.com/docker-library/postgres/blob/123aedc09bc067740fb28921c500ded83c018bd4/9.6/alpine/Dockerfile)
- [`9.5.6`, `9.5` (*9.5/Dockerfile*)](https://github.com/docker-library/postgres/blob/913bc48bfdccab58c6c15f11841da5146e7bf968/9.5/Dockerfile)
- [`9.5.6-alpine`, `9.5-alpine` (*9.5/alpine/Dockerfile*)](https://github.com/docker-library/postgres/blob/123aedc09bc067740fb28921c500ded83c018bd4/9.5/alpine/Dockerfile)
- [`9.4.11`, `9.4` (*9.4/Dockerfile*)](https://github.com/docker-library/postgres/blob/913bc48bfdccab58c6c15f11841da5146e7bf968/9.4/Dockerfile)
- [`9.4.11-alpine`, `9.4-alpine` (*9.4/alpine/Dockerfile*)](https://github.com/docker-library/postgres/blob/123aedc09bc067740fb28921c500ded83c018bd4/9.4/alpine/Dockerfile)
- [`9.3.16`, `9.3` (*9.3/Dockerfile*)](https://github.com/docker-library/postgres/blob/913bc48bfdccab58c6c15f11841da5146e7bf968/9.3/Dockerfile)
- [`9.3.16-alpine`, `9.3-alpine` (*9.3/alpine/Dockerfile*)](https://github.com/docker-library/postgres/blob/123aedc09bc067740fb28921c500ded83c018bd4/9.3/alpine/Dockerfile)
- [`9.2.20`, `9.2` (*9.2/Dockerfile*)](https://github.com/docker-library/postgres/blob/913bc48bfdccab58c6c15f11841da5146e7bf968/9.2/Dockerfile)
- [`9.2.20-alpine`, `9.2-alpine` (*9.2/alpine/Dockerfile*)](https://github.com/docker-library/postgres/blob/123aedc09bc067740fb28921c500ded83c018bd4/9.2/alpine/Dockerfile)
- [`9.6.2`, `9.6`, `9`, `latest` (*9.6/Dockerfile*)](https://github.com/docker-library/postgres/blob/3d4e5e9f64124b72aa80f80e2635aff0545988c6/9.6/Dockerfile)
- [`9.6.2-alpine`, `9.6-alpine`, `9-alpine`, `alpine` (*9.6/alpine/Dockerfile*)](https://github.com/docker-library/postgres/blob/3d4e5e9f64124b72aa80f80e2635aff0545988c6/9.6/alpine/Dockerfile)
- [`9.5.6`, `9.5` (*9.5/Dockerfile*)](https://github.com/docker-library/postgres/blob/3d4e5e9f64124b72aa80f80e2635aff0545988c6/9.5/Dockerfile)
- [`9.5.6-alpine`, `9.5-alpine` (*9.5/alpine/Dockerfile*)](https://github.com/docker-library/postgres/blob/3d4e5e9f64124b72aa80f80e2635aff0545988c6/9.5/alpine/Dockerfile)
- [`9.4.11`, `9.4` (*9.4/Dockerfile*)](https://github.com/docker-library/postgres/blob/3d4e5e9f64124b72aa80f80e2635aff0545988c6/9.4/Dockerfile)
- [`9.4.11-alpine`, `9.4-alpine` (*9.4/alpine/Dockerfile*)](https://github.com/docker-library/postgres/blob/3d4e5e9f64124b72aa80f80e2635aff0545988c6/9.4/alpine/Dockerfile)
- [`9.3.16`, `9.3` (*9.3/Dockerfile*)](https://github.com/docker-library/postgres/blob/3d4e5e9f64124b72aa80f80e2635aff0545988c6/9.3/Dockerfile)
- [`9.3.16-alpine`, `9.3-alpine` (*9.3/alpine/Dockerfile*)](https://github.com/docker-library/postgres/blob/3d4e5e9f64124b72aa80f80e2635aff0545988c6/9.3/alpine/Dockerfile)
- [`9.2.20`, `9.2` (*9.2/Dockerfile*)](https://github.com/docker-library/postgres/blob/3d4e5e9f64124b72aa80f80e2635aff0545988c6/9.2/Dockerfile)
- [`9.2.20-alpine`, `9.2-alpine` (*9.2/alpine/Dockerfile*)](https://github.com/docker-library/postgres/blob/3d4e5e9f64124b72aa80f80e2635aff0545988c6/9.2/alpine/Dockerfile)

For detailed information about the published artifacts of each of the above supported tags (image metadata, transfer size, etc), please see [the `repos/postgres` directory](https://github.com/docker-library/repo-info/blob/master/repos/postgres) in [the `docker-library/repo-info` GitHub repo](https://github.com/docker-library/repo-info).

Expand Down
4 changes: 2 additions & 2 deletions rabbitmq/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ WARNING:

# Supported tags and respective `Dockerfile` links

- [`3.6.9`, `3.6`, `3`, `latest` (*3.6/debian/Dockerfile*)](https://github.com/docker-library/rabbitmq/blob/79277042564875d55e4b05a60c65b6eb46651a94/3.6/debian/Dockerfile)
- [`3.6.9`, `3.6`, `3`, `latest` (*3.6/debian/Dockerfile*)](https://github.com/docker-library/rabbitmq/blob/d2bd71d329cacc3f010e665fbfd54f3ceaec1071/3.6/debian/Dockerfile)
- [`3.6.9-management`, `3.6-management`, `3-management`, `management` (*3.6/debian/management/Dockerfile*)](https://github.com/docker-library/rabbitmq/blob/79277042564875d55e4b05a60c65b6eb46651a94/3.6/debian/management/Dockerfile)
- [`3.6.9-alpine`, `3.6-alpine`, `3-alpine`, `alpine` (*3.6/alpine/Dockerfile*)](https://github.com/docker-library/rabbitmq/blob/79277042564875d55e4b05a60c65b6eb46651a94/3.6/alpine/Dockerfile)
- [`3.6.9-alpine`, `3.6-alpine`, `3-alpine`, `alpine` (*3.6/alpine/Dockerfile*)](https://github.com/docker-library/rabbitmq/blob/d2bd71d329cacc3f010e665fbfd54f3ceaec1071/3.6/alpine/Dockerfile)
- [`3.6.9-management-alpine`, `3.6-management-alpine`, `3-management-alpine`, `management-alpine` (*3.6/alpine/management/Dockerfile*)](https://github.com/docker-library/rabbitmq/blob/79277042564875d55e4b05a60c65b6eb46651a94/3.6/alpine/management/Dockerfile)

For detailed information about the published artifacts of each of the above supported tags (image metadata, transfer size, etc), please see [the `repos/rabbitmq` directory](https://github.com/docker-library/repo-info/blob/master/repos/rabbitmq) in [the `docker-library/repo-info` GitHub repo](https://github.com/docker-library/repo-info).
Expand Down
2 changes: 1 addition & 1 deletion rocket.chat/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ WARNING:

# Supported tags and respective `Dockerfile` links

- [`0.54.2`, `0.54`, `0`, `latest` (*Dockerfile*)](https://github.com/RocketChat/Docker.Official.Image/blob/b3edd574f8bceb7504be78074f561fd6674b96f8/Dockerfile)
- [`0.55.0-rc.1`, `0.55.0-rc`, `0.55`, `latest` (*Dockerfile*)](https://github.com/RocketChat/Docker.Official.Image/blob/b82656047fd1d91e4124c5626e970d86b6dfc36b/Dockerfile)

For detailed information about the published artifacts of each of the above supported tags (image metadata, transfer size, etc), please see [the `repos/rocket.chat` directory](https://github.com/docker-library/repo-info/blob/master/repos/rocket.chat) in [the `docker-library/repo-info` GitHub repo](https://github.com/docker-library/repo-info).

Expand Down
3 changes: 3 additions & 0 deletions wordpress/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ WARNING:
- [`4.7.3-php7.1-apache`, `4.7-php7.1-apache`, `4-php7.1-apache`, `php7.1-apache`, `4.7.3-php7.1`, `4.7-php7.1`, `4-php7.1`, `php7.1` (*php7.1/apache/Dockerfile*)](https://github.com/docker-library/wordpress/blob/3a1ca61731e6070764d5b7235e3b6617798b8af8/php7.1/apache/Dockerfile)
- [`4.7.3-php7.1-fpm`, `4.7-php7.1-fpm`, `4-php7.1-fpm`, `php7.1-fpm` (*php7.1/fpm/Dockerfile*)](https://github.com/docker-library/wordpress/blob/3a1ca61731e6070764d5b7235e3b6617798b8af8/php7.1/fpm/Dockerfile)
- [`4.7.3-php7.1-fpm-alpine`, `4.7-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/3a1ca61731e6070764d5b7235e3b6617798b8af8/php7.1/fpm-alpine/Dockerfile)
- [`cli-1.1.0`, `cli-1.1`, `cli-1`, `cli`, `cli-1.1.0-php5.6`, `cli-1.1-php5.6`, `cli-1-php5.6`, `cli-php5.6` (*php5.6/cli/Dockerfile*)](https://github.com/docker-library/wordpress/blob/0bd17ea187310d703d84feb5f412955d038e12fe/php5.6/cli/Dockerfile)
- [`cli-1.1.0-php7.0`, `cli-1.1-php7.0`, `cli-1-php7.0`, `cli-php7.0` (*php7.0/cli/Dockerfile*)](https://github.com/docker-library/wordpress/blob/0bd17ea187310d703d84feb5f412955d038e12fe/php7.0/cli/Dockerfile)
- [`cli-1.1.0-php7.1`, `cli-1.1-php7.1`, `cli-1-php7.1`, `cli-php7.1` (*php7.1/cli/Dockerfile*)](https://github.com/docker-library/wordpress/blob/0bd17ea187310d703d84feb5f412955d038e12fe/php7.1/cli/Dockerfile)

For detailed information about the published artifacts of each of the above supported tags (image metadata, transfer size, etc), please see [the `repos/wordpress` directory](https://github.com/docker-library/repo-info/blob/master/repos/wordpress) in [the `docker-library/repo-info` GitHub repo](https://github.com/docker-library/repo-info).

Expand Down

0 comments on commit 1e87dc1

Please sign in to comment.