This is a Dockerfile to build a container image for nginx and php-fpm for talaria projects
The source files for this project can be found here: https://github.com/taladocker/nginx-php
Pull the image from docker hub rather than downloading the git repo. This prevents you having to build the image on every docker host:
docker pull tala/nginx-php
To simply run the container:
docker run --name nginx-php -p 8080:80 -d tala/nginx-php
You can then browse to http://localhost:8080 to verify.