|
@@ -8,10 +8,6 @@ PHP is a server-side scripting language designed for web development, but which
|
|
|
|
|
|
# How to use this image
|
|
|
|
|
|
-## With Command Line
|
|
|
-
|
|
|
-For PHP projects run through the command line interface (CLI), you can do the following.
|
|
|
-
|
|
|
### Create a `Dockerfile` in your PHP project
|
|
|
|
|
|
```dockerfile
|
|
@@ -36,49 +32,6 @@ For many simple, single file projects, you may find it inconvenient to write a c
|
|
|
$ docker run -it --rm --name my-running-script -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:7.2-cli php your-script.php
|
|
|
```
|
|
|
|
|
|
-Note that all variants of the `php` image contain the PHP cli.
|
|
|
-
|
|
|
-## With Apache
|
|
|
-
|
|
|
-More commonly, you will probably want to run PHP in conjunction with Apache httpd. Conveniently, there's a version of the PHP container that's packaged with the Apache web server.
|
|
|
-
|
|
|
-### Create a `Dockerfile` in your PHP project
|
|
|
-
|
|
|
-```dockerfile
|
|
|
-FROM %%IMAGE%%:7.2-apache
|
|
|
-COPY src/ /var/www/html/
|
|
|
-```
|
|
|
-
|
|
|
-Where `src/` is the directory containing all your PHP code. Then, run the commands to build and run the Docker image:
|
|
|
-
|
|
|
-```console
|
|
|
-$ docker build -t my-php-app .
|
|
|
-$ docker run -d --name my-running-app my-php-app
|
|
|
-```
|
|
|
-
|
|
|
-We recommend that you add a `php.ini` configuration file, see the "Configuration" section for details.
|
|
|
-
|
|
|
-### Without a `Dockerfile`
|
|
|
-
|
|
|
-If you don't want to include a `Dockerfile` in your project, it is sufficient to do the following:
|
|
|
-
|
|
|
-```console
|
|
|
-$ docker run -d -p 80:80 --name my-apache-php-app -v "$PWD":/var/www/html %%IMAGE%%:7.2-apache
|
|
|
-```
|
|
|
-
|
|
|
-### Changing `DocumentRoot`
|
|
|
-
|
|
|
-Some applications may wish to change the default `DocumentRoot` in Apache (away from `/var/www/html`). The following demonstrates one way to do so using an environment variable (which can then be modified at container runtime as well):
|
|
|
-
|
|
|
-```dockerfile
|
|
|
-FROM %%IMAGE%%:7.1-apache
|
|
|
-
|
|
|
-ENV APACHE_DOCUMENT_ROOT /path/to/new/root
|
|
|
-
|
|
|
-RUN sed -ri -e 's!/var/www/html!${APACHE_DOCUMENT_ROOT}!g' /etc/apache2/sites-available/*.conf
|
|
|
-RUN sed -ri -e 's!/var/www/!${APACHE_DOCUMENT_ROOT}!g' /etc/apache2/apache2.conf /etc/apache2/conf-available/*.conf
|
|
|
-```
|
|
|
-
|
|
|
## How to install more PHP extensions
|
|
|
|
|
|
Many extensions are already compiled into the image, so it's worth checking the output of `php -m` or `php -i` before going through the effort of compiling more.
|
|
@@ -88,7 +41,7 @@ We provide the helper scripts `docker-php-ext-configure`, `docker-php-ext-instal
|
|
|
In order to keep the images smaller, PHP's source is kept in a compressed tar file. To facilitate linking of PHP's source with any extension, we also provide the helper script `docker-php-source` to easily extract the tar or delete the extracted source. Note: if you do use `docker-php-source` to extract the source, be sure to delete it in the same layer of the docker image.
|
|
|
|
|
|
```Dockerfile
|
|
|
-FROM %%IMAGE%%:7.2-apache
|
|
|
+FROM %%IMAGE%%:7.2-cli
|
|
|
RUN docker-php-source extract \
|
|
|
# do important things \
|
|
|
&& docker-php-source delete
|
|
@@ -118,14 +71,14 @@ See ["Dockerizing Compiled Software"](https://tianon.xyz/post/2017/12/26/dockeri
|
|
|
Some extensions are not provided with the PHP source, but are instead available through [PECL](https://pecl.php.net/). To install a PECL extension, use `pecl install` to download and compile it, then use `docker-php-ext-enable` to enable it:
|
|
|
|
|
|
```dockerfile
|
|
|
-FROM %%IMAGE%%:7.2-fpm
|
|
|
+FROM %%IMAGE%%:7.2-cli
|
|
|
RUN pecl install redis-4.0.1 \
|
|
|
&& pecl install xdebug-2.6.0 \
|
|
|
&& docker-php-ext-enable redis xdebug
|
|
|
```
|
|
|
|
|
|
```dockerfile
|
|
|
-FROM %%IMAGE%%:5.6-fpm
|
|
|
+FROM %%IMAGE%%:5.6-cli
|
|
|
RUN apt-get update && apt-get install -y libmemcached-dev zlib1g-dev \
|
|
|
&& pecl install memcached-2.2.0 \
|
|
|
&& docker-php-ext-enable memcached
|
|
@@ -137,16 +90,14 @@ For example, `memcached-2.2.0` has no PHP version constraints (https://pecl.php.
|
|
|
|
|
|
Beyond the compatibility issue, it's also a good practice to ensure you know when your dependencies receive updates and can control those updates directly.
|
|
|
|
|
|
-Unlike PHP core extensions, PECL extensions should be installed in series to fail properly if something went wrong. Otherwise errors are just skipped by PECL.
|
|
|
-
|
|
|
-For example, `pecl install memcached-2.2.0 && pecl install redis-2.2.8` instead of `pecl install memcached-2.2.0 redis-2.2.8`. However, `docker-php-ext-enable memcached redis` is fine to be all in one command.
|
|
|
+Unlike PHP core extensions, PECL extensions should be installed in series to fail properly if something went wrong. Otherwise errors are just skipped by PECL. For example, `pecl install memcached-2.2.0 && pecl install redis-2.2.8` instead of `pecl install memcached-2.2.0 redis-2.2.8`. However, `docker-php-ext-enable memcached redis` is fine to be all in one command.
|
|
|
|
|
|
### Other extensions
|
|
|
|
|
|
Some extensions are not provided via either Core or PECL; these can be installed too, although the process is less automated:
|
|
|
|
|
|
```dockerfile
|
|
|
-FROM %%IMAGE%%:5.6-apache
|
|
|
+FROM %%IMAGE%%:5.6-cli
|
|
|
RUN curl -fsSL 'https://xcache.lighttpd.net/pub/Releases/3.2.0/xcache-3.2.0.tar.gz' -o xcache.tar.gz \
|
|
|
&& mkdir -p xcache \
|
|
|
&& tar -xf xcache.tar.gz -C xcache --strip-components=1 \
|
|
@@ -155,7 +106,7 @@ RUN curl -fsSL 'https://xcache.lighttpd.net/pub/Releases/3.2.0/xcache-3.2.0.tar.
|
|
|
cd xcache \
|
|
|
&& phpize \
|
|
|
&& ./configure --enable-xcache \
|
|
|
- && make -j$(nproc) \
|
|
|
+ && make -j "$(nproc)" \
|
|
|
&& make install \
|
|
|
) \
|
|
|
&& rm -r xcache \
|
|
@@ -165,7 +116,7 @@ RUN curl -fsSL 'https://xcache.lighttpd.net/pub/Releases/3.2.0/xcache-3.2.0.tar.
|
|
|
The `docker-php-ext-*` scripts *can* accept an arbitrary path, but it must be absolute (to disambiguate from built-in extension names), so the above example could also be written as the following:
|
|
|
|
|
|
```dockerfile
|
|
|
-FROM %%IMAGE%%:5.6-apache
|
|
|
+FROM %%IMAGE%%:5.6-cli
|
|
|
RUN curl -fsSL 'https://xcache.lighttpd.net/pub/Releases/3.2.0/xcache-3.2.0.tar.gz' -o xcache.tar.gz \
|
|
|
&& mkdir -p /tmp/xcache \
|
|
|
&& tar -xf xcache.tar.gz -C /tmp/xcache --strip-components=1 \
|
|
@@ -177,14 +128,14 @@ RUN curl -fsSL 'https://xcache.lighttpd.net/pub/Releases/3.2.0/xcache-3.2.0.tar.
|
|
|
|
|
|
## Running as an arbitrary user
|
|
|
|
|
|
-For running the FPM variants as an arbitrary user, the `--user` flag to `docker run` should be used (which can accept both a username/group in the container's `/etc/passwd` file like `--user daemon` or a specific UID/GID like `--user 1000:1000`).
|
|
|
-
|
|
|
For running the Apache variants as an arbitrary user, there are several choices:
|
|
|
|
|
|
- If your kernel [is version 4.11 or newer](https://github.com/moby/moby/issues/8460#issuecomment-312459310), you can add `--sysctl net.ipv4.ip_unprivileged_port_start=0` and then `--user` should work as it does for FPM.
|
|
|
- If you adjust the Apache configuration to use an "unprivileged" port (greater than 1024 by default), then `--user` should work as it does for FPM regardless of kernel version.
|
|
|
- Otherwise, setting `APACHE_RUN_USER` and/or `APACHE_RUN_GROUP` should have the desired effect (for example, `-e APACHE_RUN_USER=daemon` or `-e APACHE_RUN_USER=#1000` -- see [the Apache `User` directive documentation for details on the expected syntax](https://httpd.apache.org/docs/2.4/mod/mod_unixd.html#user)).
|
|
|
|
|
|
+For running the FPM variants as an arbitrary user, the `--user` flag to `docker run` should be used (which can accept both a username/group in the container's `/etc/passwd` file like `--user daemon` or a specific UID/GID like `--user 1000:1000`).
|
|
|
+
|
|
|
## "`E: Package 'php-XXX' has no installation candidate`"
|
|
|
|
|
|
As of [docker-library/php#542](https://github.com/docker-library/php/pull/542), this image blocks the installation of Debian's PHP packages. There is some additional discussion of this change in [docker-library/php#551 (comment)](https://github.com/docker-library/php/issues/551#issuecomment-354849074), but the gist is that installing Debian's PHP packages in this image leads to two conflicting installations of PHP in a single image, which is almost certainly not the intended outcome.
|
|
@@ -211,10 +162,8 @@ The default config can be customized by copying configuration files into the `$P
|
|
|
FROM %%IMAGE%%:7.2-fpm-alpine
|
|
|
|
|
|
# Use the default production configuration
|
|
|
-RUN mv $PHP_INI_DIR/php.ini-production $PHP_INI_DIR/php.ini
|
|
|
+RUN mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini"
|
|
|
|
|
|
# Override with custom opcache settings
|
|
|
COPY config/opcache.ini $PHP_INI_DIR/conf.d/
|
|
|
```
|
|
|
-
|
|
|
-Where `config/` contains your custom configuration files.
|