Releases: shinsenter/php
Releases · shinsenter/php
1.2.0
Added Symfony images.
1.1.0
Unify the WEBHOME environment variable for all Docker images.
################################################################################
# You can change the home of the web user if needed
ENV WEBHOME="/var/www/html"
################################################################################
For Apache and Nginx base images, there are additional environment variables to specify to the root directory within this WEBHOME directory.
shinsenter/php:fpm-apache
################################################################################
# Sets the directory from which Apache will serve files
ENV WEBHOME="/var/www/html"
# Set Apache root folder within $WEBHOME
# E.g: APACHE_DOCUMENT_ROOT="/public"
ENV APACHE_DOCUMENT_ROOT=""
################################################################################
shinsenter/php:fpm-nginx
################################################################################
# Sets the directory from which Nginx will serve files
ENV WEBHOME="/var/www/html"
# Set Nginx root folder within $WEBHOME
# E.g: NGINX_DOCUMENT_ROOT="/public"
ENV NGINX_DOCUMENT_ROOT=""
################################################################################
1.0.0
The very first release
Docker images for PHP applications, from CLI to standalone web server.