Skip to content

not-empty/nginx-alpine

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Nginx Alpine Linux - Docker image

Latest Version Build Status Docker Image Size PRs Welcome

Docker image with Nginx using Alpine Linux OS

How to use this image

Requires Docker.

Before get the image is necessary authenticate in Github Package

You can run the container and service like so:

docker run -d -p 80:80 docker.pkg.github.com/kiwfy/nginx-alpine/nginx-alpine:latest

Or with Docker Hub image

docker run -d kiwfydev/nginx-alpine:latest

Docker with compose tool

It's a good way to use docker-compose. Example:

version: '3.7'
services:
    nginx:
        image: docker.pkg.github.com/kiwfy/nginx-alpine/nginx-alpine:latest
        container_name: nginx
        ports:
            - 80:80
        volumes:
            - ./:/var/www/html

Development

Want to contribute? Great!

Make a change in image and be careful with your updates!

Kiwfy - Open your code, open your mind!