Skip to content

Instantly share code, notes, and snippets.

@LinauxTerminology
Created August 19, 2021 16:12
Show Gist options
  • Save LinauxTerminology/53a04c45b21020862ad2b86aed88a1e5 to your computer and use it in GitHub Desktop.
Save LinauxTerminology/53a04c45b21020862ad2b86aed88a1e5 to your computer and use it in GitHub Desktop.
Jitsi Meet Installation Ubuntu
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