Docker image with apache 2.4, PHP 7, configurable PHP error_reporting setting
10K+
This is fork bylexus/apache-php7
GitHub original repository: https://github.com/bylexus/docker-apache-php7
A Docker image based on Debian, serving PHP 7 running as Apache Module. Useful for Web developers in need for a fixed PHP version. In addition, the error_reporting setting in php.ini is configurable per container via environment variable.
error_reporting$ docker run -d -P genkaok/php7.0-apache2
With all the options:
$ docker run -d -p 8080:80 \
-v /home/user/webroot:/var/www \
-e PHP_ERROR_REPORTING='E_ALL & ~E_STRICT' \
genkaok/php7.0-apache2
-v [local path]:/var/www maps the container's webroot to a local path-p [local port]:80 maps a local port to the container's HTTP port 80-e PHP_ERROR_REPORTING=[php error_reporting settings] sets the value of error_reporting in the php.ini files.Apache is configured to log both access and error log to STDOUT. So you can simply use docker logs to get the log output:
docker logs -f container-id
Content type
Image
Digest
Size
177.8 MB
Last updated
over 7 years ago
docker pull genkaok/php7.0-apache2