Docker - PHP:APACHE:LATEST with extensions
Installation apache2, php with extensions
gd
ldap
imap
opcache
xmlrpc
mysqli
apc
cas
Download images
docker pull djenko/httpd-php-ext
docker run --rm -name apache-php -p 80:80 -d djenko/httpd-php-ext
docker run --rm -name apache-php -v /yourdata:/etc/apache2/sites-available/ -p 80:80 -d djenko/httpd-php-ext
In folder yourdata put your file conf (exemple:000-default.conf)
<VirtualHost *:80>
DocumentRoot /var/www/mywebsite
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
Content type
Image
Digest
Size
170.6 MB
Last updated
over 7 years ago
docker pull djenko/httpd-php-ext