Merge pull request #31 from Starbix/dev

add nginx tag to README
This commit is contained in:
samcm 2017-06-04 18:00:10 +10:00 committed by GitHub
commit 6f16c27e51
1 changed files with 10 additions and 2 deletions

View File

@ -110,9 +110,10 @@ This is the official Docker container for PlexTogether: https://hub.docker.com/r
The following tags are available:
* latest / alpine: webapp and server based on alpine
* debian: webapp and server based on alpine
* debian: webapp and server based on debian
* server: only server based on alpine
* dev: development version of webapp and server based on alpine
* nginx: latest + nginx reverse proxy
```
docker create \
--name=plextogether \
@ -120,7 +121,14 @@ docker create \
-p 8089:8089 \
starbix/plextogether
```
Use this for the nginx tag:
```
docker create \
--name=plextogether \
-p 80:80 \
-e DOMAIN=example.com \
starbix/plextogether:nginx
```
### Building and running the webapp:
* Make sure you have Node v6+ installed