Sign inSign up

fisdap/php-apache

By fisdap

Updated over 10 years ago

Fisdap base php apache image used to build other images that extend from it

Image
0

485

fisdap/php-apache repository overview

Docker PHP Apache Image

Docker PHP Apache base image from 5.6.9-apache php image on docker hub. This project is a work in progress and will work with basic PHP/Apache needs. Work is being done to make this more Laravel friendly.

Requirements
  • The root of the site points to the public folder inside the directory you attach to the image. Eg. /path/to/code needs to have a public folder with your index.php or index.html file. The other option is to use your own apache config.
Build

To build this image yourself from the code follow these command

$ docker build -t <name>/php-apache .
Demo Development Usage (With linked MySQL image)
$ docker run -it -p 9000:80 -v /path/to/code:/var/www/html --link my-mysql:mysql --rm --name my-php-apache <name>/php-apache
Demo Production Usage (With linked MySQL image)
$ docker run -d --restart=always -p 9000:80 -v /path/to/code:/var/www/html --link my-mysql-image:mysql --name my-php-apache <name>/php-apache
TODO
License

This code is maintained by Jason Michels (http://jasonmichels.com) and open-sourced software licensed under the MIT license

Tag summary

Content type

Image

Digest

Size

165.9 MB

Last updated

over 10 years ago

docker pull fisdap/php-apache