1
0
mirror of https://github.com/rlister/dockerfiles.git synced 2025-12-13 01:36:20 +00:00

add readme

This commit is contained in:
Richard Lister
2015-03-06 15:54:53 -05:00
parent 4c95ce919b
commit 2013a02915

15
nginx/README.md Normal file
View 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
```