klaemo/nginx
Same as dockerfile/nginx but
with nginx mainline
instead of stable
.
This repository contains Dockerfile of Nginx for Docker's trusted build published to the public Docker Registry.
Install Docker.
Download trusted build from public Docker Registry: docker pull klaemo/nginx
(alternatively, you can build an image from Dockerfile: docker build -t="klaemo/nginx" github.com/klaemo/nginx
)
docker run -d -p 80:80 klaemo/nginx
Attach persistent/shared directories
docker run -d -p 80:80 -v <sites-enabled-dir>:/etc/nginx/sites-enabled -v <log-dir>:/var/log/nginx klaemo/nginx
Open http://<host>
to see the welcome page.
docker pull klaemo/nginx