docker 部署jitsi meet

1. 部署环境:

1.1 vm 虚拟机 安装的 centos 7

1.2 centos7安装docker 和 docker-compose

2.docker命令

官网部署文档地址:(文档地址有可能失效)

Self-Hosting Guide - Docker | Jitsi Meet

2.1Download and extract the latest release. DO NOT clone the git repository. See below if you are interested in running test images:

复制代码
wget $(curl -s https://api.github.com/repos/jitsi/docker-jitsi-meet/releases/latest | grep 'zip' | cut -d\" -f4)

2.2Unzip the package:

复制代码
unzip <filename>

2.3Create a .env file by copying and adjusting env.example:

复制代码
cp env.example .env

注意:.env文件中的 更换成部署服务的ip地址或者域名

System time zone

TZ=Asia/Shanghai

Public URL for the web service (required)

PUBLIC_URL=https://192.168.31.129:8443

2.4Set strong passwords in the security section options of .env file by running the following bash script

复制代码
./gen-passwords.sh

2.5Create required CONFIG directoriesFor linux:

For linux:

复制代码
mkdir -p ~/.jitsi-meet-cfg/{web,transcripts,prosody/config,prosody/prosody-plugins-custom,jicofo,jvb,jigasi,jibri}

For Windows:

复制代码
echo web,transcripts,prosody/config,prosody/prosody-plugins-custom,jicofo,jvb,jigasi,jibri | % { mkdir "~/.jitsi-meet-cfg/$_" }

2.6Run

docker-compose up -d

2.7直接访问 https://localhost:8443 备注:localhost 可能需要换成你的服务器域名/IP

注意:重启程序一定要 docker-compose dowm docker-compose up -d

相关推荐
Tim风声(网络工程师)16 分钟前
DNS有关知识(根域名服务器、顶级域名服务器、权威域名服务器)
linux·运维·服务器
热爱跑步的恒川21 分钟前
告别服务器!Amazon Lambda无服务开发实战指南
运维·服务器
照物华32 分钟前
K8s概念之进程、容器与 Pod 的终极指南
云原生·容器·kubernetes
拾心211 小时前
【运维进阶】Shell 函数的知识与实践
运维
you秀1 小时前
linux中的iptables的简介与常用基础用法
linux·运维·服务器
画中有画2 小时前
使用AI来实现拼多多自动化运营脚本
运维·人工智能·自动化·ai编程·rpa·自动化脚本
vvilkim6 小时前
Java主流框架全解析:从企业级开发到云原生
java·运维·云原生
Wy_编程10 小时前
Linux-文本搜索工具grep
linux·运维·服务器
qq9989910 小时前
AAA服务器技术
运维·服务器
Lovyk10 小时前
Linux Shell 常用操作与脚本示例详解
linux·运维·服务器