diff --git a/Dockerfile b/Dockerfile index bf7b759e..5ec7c0e3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,15 +4,13 @@ FROM ruby:2.3.1 RUN apt-get update -qq && apt-get install -y build-essential libpq-dev nodejs ENV RAILS_ENV=production \ - APP_HOME=/usr/src/app \ - BIGBLUEBUTTON_ENDPOINT=http://test-install.blindsidenetworks.com/bigbluebutton/ \ - BIGBLUEBUTTON_SECRET=8cd8ef52e8e101574e400365b55e11a6 + APP_HOME=/usr/src/app RUN mkdir $APP_HOME WORKDIR $APP_HOME -# Add the greenlight app +# Add the greenlight app ADD . $APP_HOME # Install app dependencies @@ -20,4 +18,3 @@ RUN bundle install --without development test doc --deployment --clean RUN bundle exec rake assets:precompile --trace CMD ["scripts/default_start.sh"] - diff --git a/README.md b/README.md index 58b9450e..6ef3e5a5 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Greenlight is a simple front-end application for [BigBlueButton](http://bigblueb ## Usage 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/zach-chai/greenlight/new_prod/env) +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 diff --git a/sample.env b/sample.env index 24c8ff8f..5d905b7b 100644 --- a/sample.env +++ b/sample.env @@ -4,8 +4,8 @@ RAILS_ENV=development # BigBlueButton -BIGBLUEBUTTON_ENDPOINT=http://test-install.blindsidenetworks.com/bigbluebutton/ -BIGBLUEBUTTON_SECRET=8cd8ef52e8e101574e400365b55e11a6 +BIGBLUEBUTTON_ENDPOINT= +BIGBLUEBUTTON_SECRET= # If "true", GreenLight will register a webhook callback for each meeting # created. This callback is called for all events that happen in the meeting,