/docker-nginx

🐳 Nginx docker container image

Primary LanguageDockerfileMIT LicenseMIT

Nginx Docker Container Images

Supported tags and respective Dockerfile links

Quick reference

How to use this image

start a nginx instance

$ docker run --name some-nginx -d nginx

Example docker-compose.yml for nginx:

version: '3.1'

services:
    nginx:
        image: nulxrd/nginx:latest
        restart: always
        ports:
            - "80:80"