Docker image for NGINX and PHP5.6, started using Supervisor.
Last stable NGINX installed from official stable repository (http://ppa.launchpad.net/nginx/stable/ubuntu) Last PHP5.6 installed from Ondřej Surý's unofficial repository (http://ppa.launchpad.net/ondrej/php5/ubuntu)
docker build -t andreisusanu/nginx-php5.6 .
docker run \
--name nginx-php5.6 \
-p 8000:80 \
-v /path/to/local/www:/var/www/html \
andreisusanu/nginx-php5.6
http://localhost:8000/
docker exec -it nginx-php5.6 bash