Friday, February 25, 2022

Deploying Jitsi Meet with Docker On Rokcy Linux 8.5

 Jitsi is a set of Open Source projects that allows you to easily build and deploy secure videoconferencing solutions.
Docker is a software platform that allows you to build, test, and deploy applications quickly.
________________________________________________________________________________________
Server - Os:  Rocky Linux 8.5  64Bit      |    IP -192.168.1.20        |     Hostname - www.primaryhost.com
_________________________________________________________________________________________
cat /etc/system-release ; sestatus ; hostname ; hostname -I ; dnf groupinstall "Development Tools" -y
docker-compose --version ; docker --version
git clone https://github.com/jitsi/docker-jitsi-meet && cd docker-jitsi-meet
cp env.example .env
mkdir -p ~/.jitsi-meet-cfg/{web/letsencrypt,transcripts,prosody,jicofo,jvb}
gedit .env &>/dev/null
HTTP_PORT=80
PUBLIC_URL=https://www.primaryhost.com
DOCKER_HOST_ADDRESS=192.168.1.20
docker-compose up -d
docker ps
http://192.168.1.20
_________________________________________________________________________________________


No comments:

Post a Comment