change default port to 5000

This commit is contained in:
Zachary Chai 2017-02-16 14:37:59 -05:00
parent 71bc125a61
commit c8f8f09226
1 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ Install [docker](https://docs.docker.com/engine/getstarted/step_one/)
Create an environment variables file, here is a [template with instructions](https://raw.githubusercontent.com/bigbluebutton/greenlight/master/env)
Start the server in docker
docker run -d -p 3000:80 -v ${pwd}/db/production --env-file env bigbluebutton/greenlight
docker run -d -p 5000:80 -v ${pwd}/db/production --env-file env bigbluebutton/greenlight
You can change the published port (-p) default is 3000
You can change the published port (-p) default is 5000
and the location of the environment variables file (--env-file) default is env