--
You received this message because you are subscribed to the Google Groups "BigBlueButton-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to bigbluebutton-...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/bigbluebutton-dev/2e0a01f8-2dec-4daa-bad0-a310cd89cb7dn%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/bigbluebutton-dev/3233da35-e8f3-4a77-aa7d-d82f54cade12n%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/bigbluebutton-dev/9db3e351-426d-46fb-a366-db7a3d94037en%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/bigbluebutton-dev/CA%2BQDD3xB4fhBE4WKEcGnehb9jq5z10CHqHy4-yCr%3DzMos9EVow%40mail.gmail.com.
replace xxxxxxxxxxxx with your docker container ID
cd greenlight-v3
mkdir custom
docker cp xxxxxxxxxxxx:/usr/src/app/app/assets/locales/en.json /root/greenlight-v3/custom/en.json
docker cp xxxxxxxxxxxx:/usr/src/app/app/views/layouts/application.html.erb /root/greenlight-v3/custom/application.html.erb
docker cp xxxxxxxxxxxx:/usr/src/app/app/javascript/App.jsx /root/greenlight-v3/custom/App.jsx
docker cp xxxxxxxxxxxx:/usr/src/app/app/javascript/components/shared_components/Footer.jsx /root/greenlight-v3/custom/Footer.jsx
docker cp xxxxxxxxxxxx:/usr/src/app/app/javascript/components/home/HomePage.jsx /root/greenlight-v3/custom/HomePage.jsx
docker cp xxxxxxxxxxxx:/usr/src/app/config/locales/en.yml /root/greenlight-v3/custom/en.yml
Now go back to the greenlight folder and edit docker-compose.yml file
nano docker-compose.yml
Add the following lines under greenlight volumes after the storage volume
- /root/greenlight-v3/custom/en.json:/usr/src/app/app/assets/locales/en.json
- /root/greenlight-v3/custom/application.html.erb:/usr/src/app/app/views/layouts/application.html.erb
- /root/greenlight-v3/custom/App.jsx:/usr/src/app/app/javascript/App.jsx
- /root/greenlight-v3/custom/Footer.jsx:/usr/src/app/app/javascript/components/shared_components/Footer.jsx
- /root/greenlight-v3/custom/HomePage.jsx:/usr/src/app/app/javascript/components/home/HomePage.jsx
- /root/greenlight-v3/custom/en.yml:/usr/src/app/config/locales/en.yml
docker compose down
docker compose up -d
Now to update Greenlight just follow the below steps (Note: Before updating make sure you refer to the Greenlight GitHub for the above files, if there is any change to it in the latest Greenlight make the same changes to that particular file inside the custom folder.)
cd greenlight-v3
docker compose down
docker compose pull
docker compose up -d
To view this discussion on the web visit https://groups.google.com/d/msgid/bigbluebutton-dev/5d09b2d6-e33f-4770-98f4-6e93cf34de59n%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/bigbluebutton-dev/f99b93a4-7e3d-4ff1-a36b-2ac21ad67686n%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/bigbluebutton-dev/CA%2BQDD3z5XhqC_-qpvqipSh%3DThyWyMqAvj178dM%2BLYsX8Pu6wdA%40mail.gmail.com.