All Projects → TrafeX → Docker Php Nginx

TrafeX / Docker Php Nginx

Licence: mit
Docker image with Nginx 1.18 & PHP-FPM 7.4 on Alpine Linux

Projects that are alternatives of or similar to Docker Php Nginx

Docker Wordpress
WordPress container with Nginx 1.16 & PHP-FPM 7.3 based on Alpine Linux
Stars: ✭ 148 (-74.53%)
Mutual labels:  alpine-linux, containers, container, nginx
Alpine Erlang
An alpine image with Erlang installed, intended for releases
Stars: ✭ 73 (-87.44%)
Mutual labels:  alpine-linux, containers
Docker Alpine
Docker containers running Alpine Linux and s6 for process management. Solid, reliable containers.
Stars: ✭ 574 (-1.2%)
Mutual labels:  alpine-linux, nginx
Docker Matomo
Matomo (formerly Piwik) Docker image based on Alpine Linux
Stars: ✭ 117 (-79.86%)
Mutual labels:  alpine-linux, nginx
Self Hosted Docker Server Templates
Just some templates to get someone started with hosting various servers in Docker
Stars: ✭ 237 (-59.21%)
Mutual labels:  containers, container
Staticvec
Implements a fixed-capacity stack-allocated Vec alternative backed by an array, using const generics.
Stars: ✭ 236 (-59.38%)
Mutual labels:  containers, container
Docker Oidc Proxy
Docker Image built on Alpine Linux for secure OpenID Connect (OIDC) proxy authentication
Stars: ✭ 91 (-84.34%)
Mutual labels:  alpine-linux, nginx
Bitnami Docker Nginx
Bitnami nginx Docker Image
Stars: ✭ 198 (-65.92%)
Mutual labels:  containers, nginx
Docker Atlassian Confluence
Atlassian Confluence wrapped in a Docker image
Stars: ✭ 280 (-51.81%)
Mutual labels:  containers, container
Docker
LibreNMS Docker image based on Alpine Linux and Nginx
Stars: ✭ 283 (-51.29%)
Mutual labels:  alpine-linux, nginx
Docker Django
A complete docker package for deploying django which is easy to understand and deploy anywhere.
Stars: ✭ 378 (-34.94%)
Mutual labels:  container, nginx
Helloworld Msa
Main repository with documentation and support files
Stars: ✭ 218 (-62.48%)
Mutual labels:  containers, container
Vuex Feature Scoped Structure
📈 Feature scoped Vuex modules to have a better organization of business logic code inside Vuex modules based on Large-scale Vuex application structures @3yourmind
Stars: ✭ 218 (-62.48%)
Mutual labels:  containers, container
Docker Flarum
Flarum Docker image based on Alpine Linux
Stars: ✭ 43 (-92.6%)
Mutual labels:  alpine-linux, nginx
Aws Containers Task Definitions
Task Definitions for running common applications Amazon ECS
Stars: ✭ 210 (-63.86%)
Mutual labels:  containers, container
Docker Rtorrent Rutorrent
rTorrent and ruTorrent Docker image based on Alpine Linux
Stars: ✭ 75 (-87.09%)
Mutual labels:  alpine-linux, nginx
Singularity
Singularity: Application containers for Linux
Stars: ✭ 2,290 (+294.15%)
Mutual labels:  containers, container
Runtime
Kata Containers version 1.x runtime (for version 2.x see https://github.com/kata-containers/kata-containers).
Stars: ✭ 2,103 (+261.96%)
Mutual labels:  containers, container
Please Contain Yourself
A Docker tutorial written for people who don't actually know Docker already.
Stars: ✭ 385 (-33.73%)
Mutual labels:  containers, container
Dockerfiles
Discontinued. Fork at your will.
Stars: ✭ 384 (-33.91%)
Mutual labels:  alpine-linux, nginx

Docker PHP-FPM 7.4 & Nginx 1.18 on Alpine Linux

Example PHP-FPM 7.4 & Nginx 1.18 setup for Docker, build on Alpine Linux. The image is only +/- 35MB large.

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

  • Built on the lightweight and secure Alpine Linux distribution
  • Very small Docker image size (+/-35MB)
  • Uses PHP 7.4 for better performance, lower 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 PM)
  • The servers 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 Docker image layers nginx 1.18.0 php 7.4 License MIT

Breaking changes (26/01/2019)

Please note that the new builds since 26/01/2019 are exposing a different port to access Nginx. To be able to run Nginx as a non-privileged user, the port it's running on needed to change to a non-privileged port (above 1024).

The last build of the old version that exposed port 80 was trafex/alpine-nginx-php7:ba1dd422

Usage

Start the Docker container:

docker run -p 80:8080 trafex/alpine-nginx-php7

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/alpine-nginx-php7

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/alpine-nginx-php7

PHP configuration:

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

PHP-FPM configuration:

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

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/alpine-nginx-php7: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/alpine-nginx-php7
COPY --chown=nginx --from=composer /app /var/www/html
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].