ocomsoft / nginx

Docker+NGINX with automatic reloading of the config

Home Page:http://dockerfile.github.io/#/nginx

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Nginx Dockerfile

This repository contains Dockerfile of Nginx for Docker's trusted build published to the public Docker Registry.

Dependencies

Installation

  1. Install Docker.

  2. Download trusted build from public Docker Registry: docker pull dockerfile/nginx

    (alternatively, you can build an image from Dockerfile: docker build -t="dockerfile/nginx" github.com/dockerfile/nginx)

Usage

docker run -d -p 80:80 dockerfile/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 dockerfile/nginx

After few seconds, open http://<host> to see the welcome page.

About

Docker+NGINX with automatic reloading of the config

http://dockerfile.github.io/#/nginx

License:MIT License


Languages

Language:Python 54.0%Language:Shell 46.0%