Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 413 Bytes

README.md

File metadata and controls

19 lines (14 loc) · 413 Bytes

NGINX html

This repository contains the code for the docker image, hanzel/nginx-html. The image is based on Alpine linux and contains nginx webserver. The webserver serves the index.html file.

Docker Compose

Sample docker-compose.yml configuration is given below:

version: '2'

services:
  web:
    image: nginx-html
    ports:
      - "80"