Search Docker Hub
nginx
By hasholding
323
docker run -ti -v /demo:/shared -e CONF=/shared/etc/local.conf -p 80:80 ngx
\demo ├───etc └───www
server { listen 80; server_name localhost;
location / { root /shared/www; index index.html index.htm; }
}
index.html
Content type
Image
Digest
Size
4.5 MB
Last updated
about 8 years ago
docker pull hasholding/nginx