Code Monkey home page Code Monkey logo

nginx-php-fpm-1's Introduction

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,
  • amd64/arm64.

Brought to you by Ernest Chiang, an AWS Community Hero.

GitHub Workflow Status Docker Pulls


Quick reference


Supported Image Tags


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.

nginx-php-fpm-1's People

Contributors

dwchiang avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.