Skip to content

Latest commit

 

History

History
55 lines (48 loc) · 1.79 KB

README.md

File metadata and controls

55 lines (48 loc) · 1.79 KB

php-fpm

Docker images for PHP based on the official images.

This container follows the Wordpress recommendations for additional PHP modules, error reporting and Opcache configuration.

License and Architecture

GitHub
Arch Arch Arch

Latest Release

Docker Image Version (latest semver)

Current Releases

Docker Image Version (tag latest semver) Docker Image Version (tag latest semver) Docker Image Version (tag latest semver) Docker Image Version (tag latest semver) Docker Image Version (tag latest semver)

Includes the following additional PHP modules:

  • bcmath
  • bz2
  • calendar
  • exif
  • gd
  • gettext
  • imagick
  • intl
  • mysqli
  • opcache
  • pdo_mysql
  • soap
  • sockets
  • xsl
  • zip

Usage

An example Docker Compose file:

version: '3.6'
services:
  nginx:
    image: nginx:latest
    volumes:
      - ./conf.d/nginx:/etc/nginx/conf.d
      - ./html:/var/www/html
  php-fpm:
    image: rustic/php-fpm:latest
    user: "101:101"
    volumes:
      - ./html:/var/www/html