

Next, create required directories for Jitsi meed with the following command: mkdir -p ~/.jitsi-meet-cfg/

Next, change the directory to the downloaded directory and copy the sample environment file: cd docker-jitsi-meet
JITSI DOCKER INSTALL
So we will install Jitsi meet using Docker.įirst, download the Jitsi meet for Docker with the following command: git clone Jitsi meet package is not available for CentOS operating system. You should get the following output: docker-compose version 1.25.4, build 8d51620a Next, verify the installed version of Docker compose with the following command: docker-compose -version Next, change the permission of the downloaded binary with the following command: chmod +x /usr/local/bin/docker-compose You can download the latest version of Docker compose binary package to the /usr/loca/bin directory with the following command: curl -L `uname -s`-`uname -m` -o /usr/local/bin/docker-compose Next, you will also need to install Docker compose in your system. Systemctl enable docker Step 3: Install Docker Compose Once the Docker is installed, start the Docker service and enable it to start at system reboot with the following command: systemctl start docker Next, install the Docker CE with the following command: dnf install docker-ce -nobest
JITSI DOCKER UPDATE
Next, update the package cache with the following command: dnf makecache Next, add the Docker repo with the following command: yum-config-manager -add-repo So you will need to add the Docker repo to your system.įirst, install the required packages with the following command: dnf install yum-utils curl git -y You can do this by running the following commands: dnf update -y Step 2: Add Docker Repositoryīy default, the latest version of Docker is not available in the CentOS 8 default repo. Additionally, replace ‘root’ with the username of the admin account if necessary.īefore starting, you have to make sure that all CentOS packages installed on the server are up to date. You will need to replace ‘IP_Address‘ and ‘Port_number‘ with your server’s respective IP address and SSH port number. Step 1: Log in to the Server & Update the Server OS Packagesįirst, log in to your CentOS 8 server via SSH as the root user: ssh -p Port_number
