Example PHP-FPM 7.3 & Nginx 1.18 setup for Docker, build on Alpine Linux. The image is only +/- 120MB large.
Repository: https://github.com/patrickdk77/docker-php-nginx
docker logs -f <container name>)Start the Docker container:
docker run -p 80:80 patrickdk/docker-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:80 -v ~/my-codebase:/var/www/html patrickdk/docker-php-nginx
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" patrickdk/docker-php-nginx
PHP configuration:
docker run -v "`pwd`/php-setting.ini:/etc/php7/conf.d/settings.ini" patrickdk/docker-php-nginx
PHP-FPM configuration:
docker run -v "`pwd`/php-fpm-settings.conf:/etc/php7/php-fpm.d/server.conf" patrickdk/docker-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
If you need Composer in your project, here's an easy way to add it.
FROM patrickdk/docker-php-nginx
# 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
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 patrickdk/docker-php-nginx
COPY --chown=nginx --from=composer /app /var/www/html
Content type
Image
Digest
sha256:73cbaeb7e…
Size
133.2 MB
Last updated
about 2 months ago
docker pull patrickdk/docker-php-nginx