<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>video conference Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/video-conference/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Fri, 06 Nov 2020 13:25:11 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.13</generator>
	<item>
		<title>Deploy a Jitsi Meet server with Docker</title>
		<link>https://www.osradar.com/deploy-jitsi-meet-server-with-docker/</link>
					<comments>https://www.osradar.com/deploy-jitsi-meet-server-with-docker/#comments</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Thu, 21 May 2020 23:11:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Docker]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[jitsi]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[video conference]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=20325</guid>

					<description><![CDATA[<p>Hi, folks. In this very short tutorial, I will show you how to deploy a Jitsi Meet server using Docker. This indicates that it will work for any system that has a Docker. We&#8217;ve already talked about Jitsi Meet and told you that it&#8217;s a very interesting tool for making video calls. It&#8217;s shaping up [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/deploy-jitsi-meet-server-with-docker/">Deploy a Jitsi Meet server with Docker</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Hi, folks. <strong>In this very short tutorial, I will show you how to deploy a Jitsi Meet server using Docker.</strong> This indicates that it will work for any system that has a Docker.</p>



<p><a href="https://www.osradar.com/video-conference-linux-jitsi-meet/" target="_blank" rel="noreferrer noopener">We&#8217;ve already talked about Jitsi Meet</a> and told you that it&#8217;s a very interesting tool for making video calls. It&#8217;s shaping up as an open-source option to services like Google Hangouts or the very fashionable Zoom.</p>



<p>Jitsi Meet has features that make it almost a premium application as support for HD Audio, full encryption of communication, and more. However, one of the main advantages of Jitsi is that we can install it on our server and use it privately as in an organization.</p>



<p>As you will see the process is so simple that it is scary but of course thanks to Docker it is quite customizable and you can adapt it to your needs. As always, we recommend that you do so.</p>



<p>So, let&#8217;s get to work.</p>



<h2>Deploy Jitsi Meet with Docker</h2>



<h3>Install Docker on Linux</h3>



<p>The first step is to install Docker and for that, we present you some tutorials in different Linux distributions.</p>



<ul><li>If you are using Ubuntu: <a href="https://www.osradar.com/how-to-install-docker-on-ubuntu-18-04/" target="_blank" rel="noreferrer noopener">How to install Docker on Ubuntu 18.04?</a></li><li>For CentOS 8: <a href="https://www.osradar.com/install-docker-centos-8/" target="_blank" rel="noreferrer noopener">How to install Docker on CentOS 8?</a></li><li>For CentOS 7: <a href="https://www.osradar.com/how-to-install-docker-ce-on-centos-7/" target="_blank" rel="noreferrer noopener">How to install Docker CE on CentOS 7?</a></li><li>If you use Windows: <a href="https://www.osradar.com/how-to-install-docker-in-windows-10/" target="_blank" rel="noreferrer noopener">How to install Docker in Windows 10?</a></li><li>Or, if you are using Debian 10: <a href="https://www.osradar.com/install-docker-on-debian-10/" target="_blank" rel="noreferrer noopener">How to install Docker on Debian 10?</a></li></ul>



<p>And using your distribution’s package manager, you can install Docker Compose. For example:</p>



<pre class="wp-block-preformatted">:~$ sudo apt update
:~$ sudo apt install docker-compose</pre>



<p>For Debian, Ubuntu, and derivatives.</p>



<pre class="wp-block-preformatted">:~$ sudo dnf install docker-compose</pre>



<p>Or, for RHEL, CentOS and derivatives.</p>



<p>Once Docker and Docker compose are installed now is the Gits turn.</p>



<h3>Install Git on Linux</h3>



<p>To download the Docker Compose file offered by Jitsi, we need Git. We also have several tutorials about it and you can read them according to your Linux distribution.</p>



<p><a href="https://www.osradar.com/install-git-on-debian-10/" target="_blank" rel="noreferrer noopener">Install Git on Debian 10</a><br><a href="https://www.osradar.com/install-the-latest-version-of-git-centos-8-rhel-oracle-linux/">How to install Git on CentOS 8</a><br><a href="https://www.osradar.com/how-to-install-git-on-windows-10/">Install Git on Windows?</a><br><a href="https://www.osradar.com/how-to-install-git-on-ubuntu-18-04-linux-mint-19/" target="_blank" rel="noreferrer noopener">Install Git on Ubuntu 18.04?</a></p>



<p>Now we can get started.</p>



<h3>Jitsi Meet server with Docker</h3>



<p>Now yes. Using Git we cloned Jitsi&#8217;s repository for Docker. These files already have a standard configuration for use by Docker Compose.</p>



<p>To do this, run the following command:</p>



<pre class="wp-block-preformatted">:~$ sudo git clone https://github.com/jitsi/docker-jitsi-meet.git /srv/jitsi
Cloning into '/srv/jitsi'…
remote: Enumerating objects: 3, done.
remote: Counting objects: 100% (3/3), done.
remote: Compressing objects: 100% (3/3), done.
remote: Total 1867 (delta 0), reused 0 (delta 0), pack-reused 1864
Receiving objects: 100% (1867/1867), 751.65 KiB | 441.00 KiB/s, done.
Resolving deltas: 100% (904/904), done.</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="859" height="188" src="https://www.osradar.com/wp-content/uploads/2020/05/1-15.png" alt="1.- Cloning the Jitsi files" class="wp-image-20522" srcset="https://www.osradar.com/wp-content/uploads/2020/05/1-15.png 859w, https://www.osradar.com/wp-content/uploads/2020/05/1-15-300x66.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/1-15-768x168.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/1-15-696x152.png 696w" sizes="(max-width: 859px) 100vw, 859px" /><figcaption>1.- Cloning the Jitsi files</figcaption></figure>



<p>As you can see in the command, we are indicating that the clone will be saved in <code>/srv/jitsi</code></p>



<p>Now we copy the <code>env.example</code> file that is inside that folder and transform it into the configuration file.</p>



<pre class="wp-block-preformatted">:~$ sudo cp /srv/jitsi/env.example /srv/jitsi/.env</pre>



<p>And now we proceed to edit it:</p>



<pre class="wp-block-preformatted">:~$ sudo nano /srv/jitsi/.env</pre>



<p>This file is quite large so to find the parameters we have to modify it is recommended to use the key combination CTRL + W and write the search parameter.</p>



<p>Essentially we have to modify the following parameters:</p>



<pre class="wp-block-preformatted">HTTP_PORT=80<br>HTTPS_PORT=443<br>TZ=your-timezione<br>PUBLIC_URL="https://your-server-IP"<br>DOCKER_HOST_ADDRESS=your-server-IP<br>ENABLE_HTTP_REDIRECT=1</pre>



<p>So,, if you are going to use Let&#8217;s Encrypt to secure the server, which should be obvious, then you have to modify these parameters as well:</p>



<pre class="wp-block-preformatted">ENABLE_LETSENCRYPT=1<br>LETSENCRYPT_DOMAIN=domain<br>LETSENCRYPT_EMAIL=email@domain</pre>



<p>And change:</p>



<pre class="wp-block-preformatted">PUBLIC_URL="https://your-server-IP"</pre>



<p>By:</p>



<pre class="wp-block-preformatted">PUBLIC_URL="https://your-domain"</pre>



<p>Finally, save the changes and close the file.</p>



<p>Access the folder where we have cloned all the files and start the installation:</p>



<pre class="wp-block-preformatted">:~$ cd /srv/jitsi/
:~$ sudo docker-compose up -d</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="539" src="https://www.osradar.com/wp-content/uploads/2020/05/2-19-1024x539.png" alt="2.- Deploy a Jitsi server with Docker" class="wp-image-20523" srcset="https://www.osradar.com/wp-content/uploads/2020/05/2-19-1024x539.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/2-19-300x158.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/2-19-768x404.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/2-19-696x367.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/2-19-1068x562.png 1068w, https://www.osradar.com/wp-content/uploads/2020/05/2-19.png 1335w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>2.- Deploy a Jitsi server with Docker</figcaption></figure>



<p>Now open your web browser and go to <code>https://your-domain</code> or <code>https://server-ip</code></p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="506" src="https://www.osradar.com/wp-content/uploads/2020/05/3-16-1024x506.png" alt="3.- Jitsi Meet deployed " class="wp-image-20524" srcset="https://www.osradar.com/wp-content/uploads/2020/05/3-16-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/3-16-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/3-16-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/3-16-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/3-16-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2020/05/3-16.png 1354w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>3.- Jitsi Meet deployed </figcaption></figure>



<p>This indicates that Jitsi Meet is ready to start work.</p>



<p>In my experience, it takes a server with good bandwidth and resources.</p>



<p>So, enjoy it. Do you see how easy it is to do?</p>



<h2>Conclusion</h2>



<p>Docker makes our lives much easier when it comes to deploying programs. In this case, we have shown you that doing it with Jitsi is quite simple and customizable.</p>



<p>Please share this post, join <a rel="noreferrer noopener" href="https://t.me/osradar" target="_blank">our Telegram </a>channel and if you can buy us a coffee 🙂</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/deploy-jitsi-meet-server-with-docker/">Deploy a Jitsi Meet server with Docker</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/deploy-jitsi-meet-server-with-docker/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
			</item>
	</channel>
</rss>
