Customize Greenlight BigBlueButton

  1. If you are not very familiar with docker, it’s a little bit tricky to do this customization. 
  2. Assuming that you have done this installation process – https://github.com/bigbluebutton/bbb-install
  3. Then the installation of Greenlight at – https://github.com/bigbluebutton/bbb-install#install-greenlight
  4. We need to change the install mode to customize as stated in this URL – https://docs.bigbluebutton.org/greenlight/gl-install.html#troubleshooting-greenlight  
  5. After customization, we need to edit the docker-compose.yml:

     

    services:
      app:
        entrypoint: [bin/start]
        image: bigbluebutton/greenlight:v2

    replace with

    services:
    app:
     entrypoint: [bin/start]

     image: bigbluebutton/greenlight:release-v2

  6. Then run – ./scripts/image_build.sh bigbluebutton/greenlight release-v2

  7. Lastly – docker-compose up -d

This article was written by matn0t.