catatnight/nginx-php5
Nginx 1.6 + PHP 5.5 on Ubuntu Trusty
603
A Dockerfile which produces a docker image that runs Nginx with PHP5.
Run directly
docker pull catatnight/nginx-php5
docker run -p 80:80 -v <data-dir>:/data --name app -d catatnight/nginx-php5
As base image in Dockerfile
From catatnight/nginx-php5
RUN apt-get -y install php5-mysql ...
...
/data
folder inside the container.docker pull catatnight/nginx-php5