Docker image with Nginx using Alpine Linux OS
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
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
Want to contribute? Great!
Make a change in image and be careful with your updates!
Kiwfy - Open your code, open your mind!