• Stars
    star
    1,361
  • Rank 34,333 (Top 0.7 %)
  • Language
    Dockerfile
  • License
    MIT License
  • Created over 8 years ago
  • Updated about 1 month ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Docker image with PHP-FPM 8.3 & Nginx 1.26 on Alpine Linux

Docker PHP-FPM 8.2 & Nginx 1.24 on Alpine Linux

Example PHP-FPM 8.2 & Nginx 1.24 container image for Docker, built on Alpine Linux.

Repository: https://github.com/TrafeX/docker-php-nginx

  • Built on the lightweight and secure Alpine Linux distribution
  • Multi-platform, supporting AMD4, ARMv6, ARMv7, ARM64
  • Very small Docker image size (+/-40MB)
  • Uses PHP 8.2 for the best performance, low CPU usage & memory footprint
  • Optimized for 100 concurrent users
  • Optimized to only use resources when there's traffic (by using PHP-FPM's on-demand process manager)
  • The services Nginx, PHP-FPM and supervisord run under a non-privileged user (nobody) to make it more secure
  • The logs of all the services are redirected to the output of the Docker container (visible with docker logs -f <container name>)
  • Follows the KISS principle (Keep It Simple, Stupid) to make it easy to understand and adjust the image to your needs

Docker Pulls nginx 1.24 php 8.2 License MIT

Trafex Consultancy

I can help you with Containerization, Kubernetes, Monitoring, Infrastructure as Code and other DevOps challenges.

Goal of this project

The goal of this container image is to provide an example for running Nginx and PHP-FPM in a container which follows the best practices and is easy to understand and modify to your needs.

Usage

Start the Docker container:

docker run -p 80:8080 trafex/php-nginx

See the PHP info on http://localhost, or the static html page on http://localhost/test.html

Or mount your own code to be served by PHP-FPM & Nginx

docker run -p 80:8080 -v ~/my-codebase:/var/www/html trafex/php-nginx

Docker Hub repository name change

Since we switched to PHP8 the repository name trafex/alpine-nginx-php7 didn't make sense anymore. Because you can't change the name of the repository on Docker Hub I created a new one.

From now on this image can be pulled from Docker Hub under the name trafex/php-nginx.

Configuration

In config/ you'll find the default configuration files for Nginx, PHP and PHP-FPM. If you want to extend or customize that you can do so by mounting a configuration file in the correct folder;

Nginx configuration:

docker run -v "`pwd`/nginx-server.conf:/etc/nginx/conf.d/server.conf" trafex/php-nginx

PHP configuration:

docker run -v "`pwd`/php-setting.ini:/etc/php82/conf.d/settings.ini" trafex/php-nginx

PHP-FPM configuration:

docker run -v "`pwd`/php-fpm-settings.conf:/etc/php8/php-fpm.d/server.conf" trafex/php-nginx

Note; Because -v requires an absolute path I've added pwd in the example to return the absolute path to the current directory

Adding composer

If you need Composer in your project, here's an easy way to add it.

FROM trafex/php-nginx:latest

# Install composer from the official image
COPY --from=composer /usr/bin/composer /usr/bin/composer

# Run composer install to install the dependencies
RUN composer install --optimize-autoloader --no-interaction --no-progress

Building with composer

If you are building an image with source code in it and dependencies managed by composer then the definition can be improved. The dependencies should be retrieved by the composer but the composer itself (/usr/bin/composer) is not necessary to be included in the image.

FROM composer AS composer

# copying the source directory and install the dependencies with composer
COPY <your_directory>/ /app

# run composer install to install the dependencies
RUN composer install \
  --optimize-autoloader \
  --no-interaction \
  --no-progress

# continue stage build with the desired image and copy the source including the
# dependencies downloaded by composer
FROM trafex/php-nginx
COPY --chown=nginx --from=composer /app /var/www/html

More Repositories

1

docker-wordpress

WordPress container with Nginx 1.20 & PHP-FPM 8.3 based on Alpine Linux
Dockerfile
260
star
2

home-assistant-config

My Home Assistant configuration
Shell
52
star
3

clipboard.ninja

Realtime clipboard to easily and secure share text between computers or mobile devices
JavaScript
23
star
4

cimonitor

Monitor the status of Jenkins jobs with a traffic light connected to a Raspberry Pi
JavaScript
12
star
5

DLink-Ptz-Tool

A PHP app to use the PTZ option of a DCS-5222L without the need for Java or ActiveX
PHP
10
star
6

clipboard

Realtime online clipboard to exchange plaintext data
HTML
7
star
7

docker-alpine-mosquitto

Mosquitto message broker in a Docker container based on Alpine Linux
Dockerfile
6
star
8

videotranscoder

Wrapper around ffmpeg to transcode media to Apple's ProRes codec
Go
5
star
9

CLKB

Command Line Knowledge Base.
Python
5
star
10

nefiteasy-http-server-docker

Runs the Nefit Easy HTTP server in a Docker container for easy deploying
Dockerfile
2
star
11

Vagrant-devbox

Vagrant template using Puppet Project
Ruby
2
star
12

clipboard.ninja-app

The Android app for Clipboard.ninja, build with React Native
Objective-C
2
star
13

domains-crawler

JavaScript
2
star
14

audio-midi-controller

Control the PulseAudio audio channels using a Behringer X-Touch Mini midi controller
TypeScript
2
star
15

youless-influxdb

Sending the Youless metrics to InfluxDB with a Docker container
JavaScript
1
star
16

dbdiff

Compare database schema with previous saved versions.
Python
1
star
17

TxVim

TrafeX' Vim config
Vim Script
1
star
18

MissileServer

UDP server for the USB Missle Launcher
Python
1
star
19

puppet-project

Puppet configuration for a development environnement
Puppet
1
star
20

irssi-notifier-redis

Remote Irssi notifier using Redis
Python
1
star