From dddec8aeab2a6924039c103f6417fc72c1a583a0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 9 Jun 2016 09:01:46 -0700 Subject: [PATCH] Run update.sh --- php/README.md | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/php/README.md b/php/README.md index 264b74bce..6e1a133b8 100644 --- a/php/README.md +++ b/php/README.md @@ -156,22 +156,6 @@ If you don't want to include a `Dockerfile` in your project, it is sufficient to $ docker run -d -p 80:80 --name my-apache-php-app -v "$PWD":/var/www/html php:5.6-apache ``` -# Image Variants - -The `php` images come in many flavors, each designed for a specific use case. - -## `php:` - -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. - -## `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. - -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). - # License View [license information](http://php.net/license/) for the software contained in this image.