1
0
mirror of https://github.com/rlister/dockerfiles.git synced 2026-01-04 12:29:16 +00:00

move default debian install to latest, add nginx.org install in stable

This commit is contained in:
Richard Lister
2015-06-22 16:10:43 -04:00
parent 003ca029f4
commit 1e768c3cc1
3 changed files with 28 additions and 1 deletions

View File

@@ -3,6 +3,11 @@
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.
## Versions
- `latest`: installs latest debian.org package
- `stable`: installs `stable` package from nginx.org; this will generally be newer
## Usage
```
@@ -11,5 +16,5 @@ docker run -d --name nginx \
-v /var/www/html:/var/www/html \
-v /var/log/nginx:/var/log/nginx \
-p 80:80 -p 443:443 \
rlister/nginx
rlister/nginx:stable
```