Lightweight base image Dockerfile for development web using php & nginx over alpine
1.5K
Example PHP-FPM 8.1/8.0/7.4/7.3./7.2/7.1/7.0 & Nginx 1.22 container image for Docker, built on Alpine Linux.
Repository: https://github.com/aldok10/web-srv-alpine
on-demand process manager)docker logs -f <container name>)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.
Start the Docker container:
docker run --rm -p 80:80 -e APP_ENV=local akarendra835/web-srv /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.conf
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 --rm -p 80:80 -v ~/my-codebase:/var/www/html -e APP_ENV=local akarendra835/web-srv /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.conf
This image can be pulled from Docker Hub under the name akarendra835/web-srv.
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" akarendra835/web-srv /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.conf
PHP configuration:
# for php version 8.1 and 8.0
docker run -v "`pwd`/php-setting.ini:/etc/php8/conf.d/settings.ini" -e APP_ENV=local akarendra835/web-srv /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.conf
# for php version 7
docker run -v "`pwd`/php-setting.ini:/etc/php7/conf.d/settings.ini" -e APP_ENV=local akarendra835/web-srv /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.conf
PHP-FPM configuration:
# for php version 8.1 and 8.0
docker run -v "`pwd`/php-fpm-settings.conf:/etc/php8/php-fpm.d/server.conf" -e APP_ENV=local akarendra835/web-srv /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.conf
# for php version 7
docker run -v "`pwd`/php-fpm-settings.conf:/etc/php7/php-fpm.d/server.conf" -e APP_ENV=local akarendra835/web-srv /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.conf
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 akarendra835/web-srv: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
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 akarendra835/web-srv
COPY --chown=nginx --from=composer /app /var/www/html
Content type
Image
Digest
sha256:179e9a2c2…
Size
38.6 MB
Last updated
about 4 years ago
docker pull akarendra835/web-srv