This repository will provide you a fully functional PHP-FPM 7.4 Docker image built from official sources nightly. It provides the base for Devilbox PHP-FPM Docker images.
| Docker Hub | Upstream Project |
|---|---|
![]() |
Have a look at the following similar Devilbox base images for which no official versions exist yet:
In case you are looking for development and production ready PHP-FPM images for all versions, which have a vast amount of modules enabled by default go here:
In case you seek help, go and visit the community pages.
|
|
|
|
| devilbox.readthedocs.io | gitter.im/devilbox | devilbox.discourse.group |
# Build the Docker image locally
make build
# Rebuild the Docker image locally without cache
make rebuild
# Test the Docker image after building
make testAdd the following FROM line into your Dockerfile:
FROM devilbox/php-fpm-7.4:latestIf you need a dockerized version of PHP 7.4 or PHP-FPM 7.4 which provides a vast amount of modules enabled by default visit: devilbox/docker-php-fpm
| Module | Built-in |
|---|---|
| Core | ✔ |
| ctype | ✔ |
| curl | ✔ |
| date | ✔ |
| dom | ✔ |
| fileinfo | ✔ |
| filter | ✔ |
| ftp | ✔ |
| hash | ✔ |
| iconv | ✔ |
| json | ✔ |
| libxml | ✔ |
| mbstring | ✔ |
| mysqlnd | ✔ |
| openssl | ✔ |
| pcre | ✔ |
| PDO | ✔ |
| pdo_sqlite | ✔ |
| Phar | ✔ |
| posix | ✔ |
| readline | ✔ |
| Reflection | ✔ |
| session | ✔ |
| SimpleXML | ✔ |
| sodium | ✔ |
| SPL | ✔ |
| sqlite3 | ✔ |
| standard | ✔ |
| tokenizer | ✔ |
| xml | ✔ |
| xmlreader | ✔ |
| xmlwriter | ✔ |
| zlib | ✔ |
Create a temporary directory, navigate into it and copy/paste the commands below to get started.
mkdir htdocs
echo "<?php echo 'hello world';" > htdocs/index.phpdocker run -d --rm --name devilbox-php-fpm-7-4 \
-v $(pwd)/htdocs:/var/www/default/htdocs devilbox/php-fpm-7.4docker run -d --rm --name devilbox-nginx-stable \
-v $(pwd)/htdocs:/var/www/default/htdocs \
-e PHP_FPM_ENABLE=1 \
-e PHP_FPM_SERVER_ADDR=devilbox-php-fpm-7-4 \
-p 8080:80 \
--link devilbox-php-fpm-7-4 \
devilbox/nginx-stableOpen up your browser at http://127.0.0.1:8080
Copyright (c) 2018 cytopia
