Created
August 19, 2021 16:12
-
-
Save LinauxTerminology/53a04c45b21020862ad2b86aed88a1e5 to your computer and use it in GitHub Desktop.
Jitsi Meet Installation Ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo -i | |
sudo curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose | |
chmod +x /usr/local/bin/docker-compose | |
ln -s /usr/local/bin/docker-compose /usr/bin/docker-compose | |
apt-get update -y | |
apt-get upgrade -y | |
docker-compose --version | |
wget https://github.com/jitsi/docker-jitsi-meet/archive/refs/tags/stable-5963.zip | |
unzip stable-5963.zip | |
cd stable-5963 | |
cp env.example .env | |
./gen-passwords.sh | |
mkdir -p ~/.jitsi-meet-cfg/{web/letsencrypt,transcripts,prosody/config,prosody/prosody-plugins-custom,jicofo,jvb,jigasi,jibri} | |
docker-compose up -d | |
Access the web UI at https://localhost:8443 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment