docker-images/pluie/alpine-apache
2016-07-29 15:28:15 +02:00
..
install.d all images from offical alpine:3.4 2016-07-29 14:04:25 +02:00
pre-init.d adding image pluie/alpine-apache 2016-07-25 05:01:53 +02:00
.gitignore adding image pluie/alpine-apache 2016-07-25 05:01:53 +02:00
build adding image pluie/alpine-apache 2016-07-25 05:01:53 +02:00
Dockerfile all images from offical alpine:3.4 2016-07-29 14:04:25 +02:00
files.tar all images from offical alpine:3.4 2016-07-29 14:04:25 +02:00
main.sh adding image pluie/alpine-apache 2016-07-25 05:01:53 +02:00
README.md update readme & build 2016-07-29 15:28:15 +02:00

pluie/alpine-apache

Extend pluie/alpine with apache 2.4.23 and php 5.6.24

  • error log are attached to stdout
  • no need port redirection
  • you can use env var at container creation : HTTP_SERVER_NAME (default : docker-site.dev ortherwise edit app/vhost later)
  • you can still use ever your local http & sql server while your container(s) are running

Image Size

  • image ~ 37 MB

Image Volumes

/app directory is a docker volume bind to your app project (silex/symfony etc)

/app/www/ is the documentRoot.
put only your entry point and static files to the documentRoot directory, no your app sources (/app directory is design for this).

/app/vhost is your app vhost configuration file (with a serverName directive). by default it use the apache rewrite module to redirect all uri to the unique entry point index.php

/app/            # your application directory
  |
  |---- www/     # documentRoot
  |
  |---- vhost    # apache app vhost

Image Usage

chdir to your project directory

$ docker run --name apache -it --link=db1:mysql -v $(pwd):/app pluie/apache

or

$ docker run --name srv -it --link=db1:mysql -e HTTP_SERVER_NAME=yourServerName -v $(pwd):/app pluie/apache

Controling http server

$ docker exec -it apache "httpd -k restart"

for more commands :

$ docker exec -it apache "httpd -h"