Apache 2 ready to work with PHP5 and : Rewrite mod, MySQL-lib, cURL, GD lib, SSMTP
1.4K

This image include from a Debian :
You can simply start a new web server like this :
docker run -d -P camillebaronnet/apache-php
To choose a particular port
docker run -d -p 8001:80 camillebaronnet/apache-php
And try : http://localhost:8001
Mount a volume from your host
docker run -d -p 8001:80 -v /yourproject:/var/www camillebaronnet/apache-php
###Example with MySQL link :
docker pull mysql
...
docker run -d --name mymysqlcontainer mysql
...
docker run -d -p 80:80 --link mymysqlcontainer:mysql -v /yourproject/:var/www camillebaronnet/apache-php
The dev version allow directory listings and display errors from PHP : camillebaronnet/apache-php:dev
Content type
Image
Digest
sha256:e794b49ba…
Size
75.4 MB
Last updated
almost 11 years ago
docker pull camillebaronnet/apache-php