{"id":13556206,"url":"https://github.com/matrix-org/docker-jitsi","last_synced_at":"2025-08-19T06:38:03.378Z","repository":{"id":147156501,"uuid":"98973973","full_name":"matrix-org/docker-jitsi","owner":"matrix-org","description":"Docker files for building images and running jitsi-meet in Docker containers","archived":false,"fork":false,"pushed_at":"2020-07-21T03:59:48.000Z","size":26,"stargazers_count":61,"open_issues_count":2,"forks_count":17,"subscribers_count":32,"default_branch":"master","last_synced_at":"2025-04-10T16:07:03.896Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/matrix-org.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2017-08-01T07:42:02.000Z","updated_at":"2025-01-11T04:02:23.000Z","dependencies_parsed_at":"2024-01-22T08:09:10.334Z","dependency_job_id":null,"html_url":"https://github.com/matrix-org/docker-jitsi","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/matrix-org/docker-jitsi","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matrix-org%2Fdocker-jitsi","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matrix-org%2Fdocker-jitsi/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matrix-org%2Fdocker-jitsi/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matrix-org%2Fdocker-jitsi/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/matrix-org","download_url":"https://codeload.github.com/matrix-org/docker-jitsi/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matrix-org%2Fdocker-jitsi/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271113775,"owners_count":24701613,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-19T02:00:09.176Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-01T12:03:41.990Z","updated_at":"2025-08-19T06:38:03.356Z","avatar_url":"https://github.com/matrix-org.png","language":"Lua","funding_links":[],"categories":["Lua","others"],"sub_categories":[],"readme":"# Jitsi Meet in docker\n\nImplemented based on [Jitsi Meet manual installation instructions](https://github.com/jitsi/jitsi-meet/blob/master/doc/manual-install.md).\n\n## Images\n\n* prosody - [official image](https://hub.docker.com/r/prosody/prosody/)\n* nginx - [official image](https://hub.docker.com/_/nginx/)\n* jicofo and videobridge - custom in-tree, based on [phusion/baseimage](https://github.com/phusion/baseimage-docker)\n\n## jitsi-meet\n\nClone and prepare the [jitsi-meet web repository](https://github.com/jitsi/jitsi-meet) alongside the `docker-jitsi` directory. It is mounted as a volume into the nginx container to be served.\n\nThat is from the directory where this README.md file is:\n```\ncd ..\n\ngit clone git@github.com:jitsi/jitsi-meet.git\n\ncd jitsi-meet\nnpm install \u0026\u0026 make\n\ncd ../docker-jitsi\n```\n\n## Configuration\n\nThe files in `config/` and the `docker-compose.yaml` file will need modifying if you wish to use this for a real deployment.\n\n### Secrets\n\nChoose three distinct secrets (passwords) and respectively replace all instances of YOURSECRET1, YOURSECRET2 and YOURSECRET3 with them.\n\n### Domain\n\nChoose a base domain (e.g. jitsi.example.com). Replace \"prosody\" with your base domain in all the cases below:\n\n`config/config.js`:\n```\ndomain: 'prosody',\nbridge: 'videobridge.prosody',\nanonymousdomain: 'guest.prosody',\n//authdomain: 'prosody',  // defaults to \u003cdomain\u003e\nmuc: 'conference.prosody', // FIXME: use XEP-0030\n//jirecon: 'jirecon.prosody',\n//call_control: 'callcontrol.prosody',\nfocus: 'focus.prosody', // defaults to 'focus.jitsi-meet.example.com'\nfocusUserJid: 'focus@auth.prosody', // The real JID of focus participant - can be overridden here\n```\n**NOTE:** `config/config.js` is from the jitsi-meet repository. If you prefer, you can modify `docker-compose.yaml` to not mount in `config/config.js` and instead modify the config.js in-place in your jitsi-meet clone.\n\n`config/default.conf`:\n(Note: also change \"localhost\" here)\n```\nserver_name localhost;\nproxy_set_header Host \"prosody\";\n```\n\n`config/prosody.cfg.lua`:\n```\nadmins = { \"focus@auth.prosody\" }\nVirtualHost \"prosody\"\nVirtualHost \"auth.prosody\"\nVirtualHost \"guest.prosody\"\nComponent \"conference.prosody\" \"muc\"\nComponent \"videobridge.prosody\"\nComponent \"focus.prosody\"\n```\n\n`docker-compose.yaml`:\n```\nservices:\n    prosody:\n        environment:\n            DOMAIN: auth.prosody\n    jicofo:\n        environment:\n            XMPP_DOMAIN: prosody\n    videobridge:\n        environment:\n            XMPP_DOMAIN: prosody\n```\n\n## Ports bound on host\n\n* nginx\n    * 9090 - HTTP for jitsi-meet web client\n* prosody\n    * 5347 - prosody component port, used by videobridge. **Don't expose to the world in your firewall rules.**\n* jitsi-videobridge\n    * 4443/tcp - WebRTC over TCP/TLS for corporate firewalls blocking UDP traffic\n    * 49152-65535/udp - WebRTC, dynamically bound as needed and available\n\n**NOTE**: jitsi-videobridge is run using `network_mode: host` so that UDP traffic in the configured range can flow properly.\n\n## Running\n\n```\ndocker-compose -p jitsi build\ndocker-compose -p jitsi up -d\n```\n\n## License\n\nApache License, Version 2.0. See the [LICENSE](https://github.com/matrix-org/docker-jitsi/blob/master/LICENSE) file for more details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatrix-org%2Fdocker-jitsi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmatrix-org%2Fdocker-jitsi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatrix-org%2Fdocker-jitsi/lists"}