Best laravel framework open-source packages.

Nginx php fpm

Running Cloud Native Laravel/PHP app with nginx + php-fpm 8.2/8.1/8.0/7.4/7.3 across amd64, arm64 arch.
Updated 2 months ago

dwchiang/nginx-php-fpm

A Docker image (Dockerfile) that merged nginx & php-fpm into one bite on Debian/Alpine for

  • modern applications,
  • cloud native designs,
  • AWS Fargate,
  • Amazon ECS/EKS,
  • amd64/arm64 (e.g. AWS Graviton).

Brought to you by Ernest Chiang (an AWS Community Hero), and Irvine Chang.


Latest Semver | Docker Image Version (latest semver) | License | GitHub | Docker | Docker Pulls | Docker Stars | GitHub | GitHub Repo stars | GitHub forks



Quick reference


Why Support This Project?

Our open-source project, "dwchiang/nginx-php-fpm," provides a Docker image essential for running modern PHP applications in cloud-native ecosystems. Crafted with ❤️ by Ernest Chiang, an AWS Community Hero, and Irvine Chang, this project makes deploying Laravel and other PHP apps across various environments and architectures simpler.

Supporting us ensures continuous improvement, updates to the latest PHP and Nginx versions, and maintenance of this tool that many developers depend on for deploying PHP applications efficiently and securely on platforms like AWS Fargate and Amazon ECS/EKS. Your sponsorship will directly contribute to:

  • 🔄 Regular updates and compatibility checks
  • 🛠️ Ongoing maintenance and support
  • 📚 Extensive documentation and community engagement

Whether by starring ⭐ our GitHub repository or Docker Hub, letting us know how you use it, or offering financial support through "Buy me a coffee," your support empowers us to keep building and maintaining this essential resource for developers worldwide.

Join us in making PHP application deployment better and more accessible for everyone. Thank you for your support and trust in our project!


Supported Image Tags

  • Full tag list (included older tags): https://github.com/dwchiang/nginx-php-fpm/blob/master/docs/Tags.md
  • Starting from 2023-09-08, the project will build the last 5 PHP version of the same combination of PHP, OS and Nginx at the build moment to reduce the storage spending on AWS ECR Public.
  • Starting from 2023-04-27, the project has decided to maintain the latest version of each PHP branch due to the increasing mixed results observed when combining different versions of PHP, OS, and Nginx.
  • Changed tag naming rule on 2021-07-25. More details please refer to this docs.

Features

  • EXPOSE 80.
  • Using supervisord to manage the processes of nginx and php-fpm.
  • Load minimized PHP Extensions. (so that you gain the flexibility to load corresponding extensions you need)
  • Run scripts in /docker-entrypoint.d/

Quick Start

Create a Dockerfile like this to copy your application and PHP scrips locates at your_app/ folder into the container.

FROM dwchiang/nginx-php-fpm:latest

COPY your_app /var/www/html/public
  • Your application may require to install some more PHP extensions. Please refer to Part 2 description below.
  • More detailed usage please refer to the exmaple Dockerfiles of Part 2 below.

Hands-On


Original Intention

I love PHP since PHP3 (1997) and I'm very happy to run more PHP applications and services in a cloud native way. I mainly tunes it to run on Amazon ECS, but you can run on any platforms or local machines.


Introduction

This Docker image is designed to run all kinds of PHP applications by decoupling into 2 parts:

  • Part 1: Base image,
  • Part 2: Your app + PHP extension installation + PHP.ini configuration.

These two parts are separated Dockerfiles.

  1. This project will maintain the Part 1 Dockerfiles (base images).

  2. You will generate your own Part 2 Dockerfile (your app), but this project also includes some reference examples for you.

You can find one of the Dockerfiles of Part 2 in this project as reference, and modify it for fitting into your project by adding some PHP extensions and maybe a few extra scripts.


Part 1: Base image

The base image is basically merged from official php-fpm and nginx Dockerfiles.

  • Plus supervisord to manage the processes of nginx and php-fpm.
  • Plus configuration files for nginx.

Here list some useful pathes you may want to modify at Part 2:

  • /usr/share/nginx/html: Place your static files here.
  • /var/www/html: Place your PHP application files here.
  • /var/www/html/public: Place your index.php here.

Configuration files:

  • /etc/nginx/conf.d/*.conf: If you have some other extra nginx conf files, place here.
  • /etc/supervisor/conf.d/*.conf: If you have some other extra supervisor conf files, place here.

Scripts:

  • /docker-entrypoint.d/*.sh: If you have some other extra shell scripts, place here. Filename format {number}-{customName}.sh. Remember to chmod +x` on these script files.

You can find the base image Dockerfiles in these folders by OS versions:

  • Dockerfiles/buster
  • Dockerfiles/alpine*

These base images will be uploaded to dwchiang/nginx-php-fpm on Docker Hub, and also to dwchiang/nginx-php-fpm on AWS ECR Public.


Part 2: PHP extension installation & PHP application and configuration

Part 2 is designed to be flexible.

Flexible means you can install minimized PHP extensions based on the needs of your PHP application. (Or any PHP extensions you wants.)

You can get into your container and check the included PHP modules by using php -m.

You can find these Dockerfiles in the Testings folder of this repository dwchiang/nginx-php-fpm on GitHub:

  • Dockerfile-8.5.23-laravel-buster: Running Laravel 8.5.23 on Buster (Debian 10)

  • Dockerfile-8.5.23-laravel-alpine3.14: Running Laravel 8.5.23 on Alpine 3.14

  • Dockerfile-8.5.23-laravel-alpine3.13: Running Laravel 8.5.23 on Alpine 3.13

  • Dockerfile-8.5.23-phpinfo-buster: Running phpinfo() on Buster (Debian 10)

  • Dockerfile-8.5.23-phpinfo-alpine3.14: Running phpinfo() on Alpine 3.14

  • Dockerfile-8.5.23-phpinfo-alpine3.13: Running phpinfo() on Alpine 3.13

This project will not upload the images of Part 2 on Docker Hub.

Please kindly use Part 2 as your Dockerfile reference to build your own Dockerfile, and enjoy the fun :)

You can also give a try to this Workshops: Running Laravel on AWS ECS.


License

View license information of nginx, PHP, Laravel for the software contained in this image.

As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained).

Some additional license information which was able to be auto-detected might be found in the repo-info repository's nginx/ directory and the repo-info repository's php/ directory.

As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within.


Star History

Star History Chart