From 95a70e5fb748916261d6702f2634ea46ca562b0c Mon Sep 17 00:00:00 2001 From: panda Date: Wed, 8 Apr 2020 23:06:10 +0200 Subject: [PATCH] updated README --- README.md | 35 ++++++++++++++++++++++++++++++++++- 1 file changed, 34 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index dad49e0..33224cc 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,36 @@ # docker-jitsi-meet_configs -.env file for https://github.com/jitsi/docker-jitsi-meet \ No newline at end of file +.env file for https://github.com/jitsi/docker-jitsi-meet + + +# instructions: +as listed in: https://github.com/jitsi/docker-jitsi-meet#quick-start + + +``` +git clone https://github.com/jitsi/docker-jitsi-meet +cd docker-jitsi-meet +cp env.example .env +``` +edit the .env as you wish or suggested in this repo, +then: + +``` +docker-compose up + +``` +then add an user as listed in: https://github.com/jitsi/docker-jitsi-meet#authentication + +``` +docker-compose exec prosody /bin/bash +prosodyctl --config /config/prosody.cfg.lua register TheDesiredUsername meet.jitsi TheDesiredPassword +``` + +# notes: +if something goes wrong, you might want to destroy all and start clean, for this you'll need to remove also the folder defined by CONFIG variable in .env, default is "~/.jitsi-meet-cfg" + +you can do it with one liner: + +``` +docker-compose stop ; docker-compose rm ; docker system prune ; rm -rf ~/.jitsi-meet-cfg +```