https://github.com/jitsi/jitsi-meet/issues/797
I can't find any of the html or css files after installing via docker
Modifying interface_config.js didn't change anything. Even after
docker-compose up -d --force-recreate
You need to change the interface_config.js in the $CONFIG directory.
how you do it?
Oops, I was wrong. You need to replace the /usr/share/jitsi-meet/images/watermark.png file in the web container.
thanks also found in my home folder the hidden $CONFIG directory, for help configuring further people
You can create a new volume in docker-compose.yml for the png.
volumes:
- .....
- .......
- /home/user/watermark.png:/usr/share/jitsi-meet/images/watermark.png
And recreate the containers.
Put the png in /home/user/watermark.png and that's it!
thanks!
Most helpful comment
You can create a new volume in docker-compose.yml for the png.
volumes:
- .....
- .......
- /home/user/watermark.png:/usr/share/jitsi-meet/images/watermark.png
And recreate the containers.
Put the png in /home/user/watermark.png and that's it!