This repository contains the source for the NGINX Cookbook using docker.
You should have docker
installed on your machine to run these examples.
docker run --name nginx -p 9999:80 -d nginx
Open http://localhost:9999/ or use curl
to test.
cp <folder>
docker build -t nginx-docker .
docker run --name nginx -p 9999:80 -d nginx-docker
docker rm -f nginx