mirror of
https://github.com/rlister/dockerfiles.git
synced 2025-12-13 01:36:20 +00:00
add readme
This commit is contained in:
15
nginx/README.md
Normal file
15
nginx/README.md
Normal file
@@ -0,0 +1,15 @@
|
||||
# nginx on debian:jessie
|
||||
|
||||
About as simple as it gets, nginx installed on debian:jessie. Use this
|
||||
if your app is based on debian:jessie also, so they can share base.
|
||||
|
||||
## Usage
|
||||
|
||||
```
|
||||
docker run -d --name nginx \
|
||||
-v /etc/nginx/sites-enabled:/etc/nginx/sites-enabled \
|
||||
-v /var/www/html:/var/www/html \
|
||||
-v /var/log/nginx:/var/log/nginx \
|
||||
-p 80:80 -p 443:443 \
|
||||
rlister/nginx
|
||||
```
|
||||
Reference in New Issue
Block a user