Nginx 1.6 + PHP 5.5 on Ubuntu Trusty
863
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.Content type
Image
Digest
sha256:0c3315431…
Size
167.3 MB
Last updated
almost 11 years ago
docker pull catatnight/nginx-php5