Docker image with nginx on CentOS 7 ready for php70 fastcgi mateothegreat/docker-centos-base-php70.
To begin, clone this repo:
git clone https://github.com/mateothegreat/docker-centos-base-nginx
Replace '.' for the --volume switch if you do not want to mount in-place the current working directory. To start a container instance:
make run
which is the same as:
docker run -d \
--rm \
--volume .:/www \
--name nginx \
appsoa/docker-centos-base-nginx:latest
Update Dockerfile to your liking and run:
make build