WordPress specific docker images for PHP-FPM.
It doesn't contain WordPress, like the official image, but the images are built to run WordPress having the optimized PHP-FPM packages.
# PHP 7.3
docker image pull tareq1988/php-wp:7.3
# PHP 7.4
docker image pull tareq1988/php-wp:7.4
One-off commands
# PHP 7.4
docker run --rm tareq1988/php-wp:7.4 bash -c "php -v"
# PHP 7.3
docker run --rm tareq1988/php-wp:7.3 bash -c "php -v"
With docker-compose:
version: "3"
services:
php:
image: "tareq1988/php-wp:7.3"
volumes:
- "./app:/var/www/html"
Content type
Image
Digest
Size
74.9 MB
Last updated
almost 6 years ago
docker pull tareq1988/php-wp:7.3