Sign inSign up

hasholding/nginx

By hasholding

Updated about 8 years ago

Image
0

323

hasholding/nginx repository overview

Nginx

docker run -ti -v /demo:/shared -e CONF=/shared/etc/local.conf -p 80:80 ngx

\demo ├───etc └───www


local.conf

server { listen 80; server_name localhost;

location / {
    root   /shared/www;
    index  index.html index.htm;
}

}


index.html

Demo Demo

Tag summary

Content type

Image

Digest

Size

4.5 MB

Last updated

about 8 years ago

docker pull hasholding/nginx