Simple Nginx docker image with custom config
107
This repository provides a simple, up to date, Nginx Docker image configured with a custom default.conf.
docker run --name custom-nginx-server -p 80:80 -v $(pwd):/usr/share/nginx/html:ro -d minarox/custom-nginx-server
version: '3.8'
services:
custom-nginx-server:
container_name: custom-nginx-server
image: minarox/custom-nginx-server
ports:
- "80:80"
volume:
- ./:/usr/share/nginx/html:ro
More details on GitHub.
Content type
Image
Digest
sha256:4b1bda15c…
Size
57 MB
Last updated
10 months ago
docker pull minarox/custom-nginx-server