{"id":19383372,"url":"https://github.com/mdouchement/docker-zoom-us","last_synced_at":"2025-05-08T00:39:21.630Z","repository":{"id":37927625,"uuid":"50686271","full_name":"mdouchement/docker-zoom-us","owner":"mdouchement","description":" Dockerized zoom with voice and video call support ","archived":false,"fork":false,"pushed_at":"2023-06-28T12:04:57.000Z","size":23,"stargazers_count":173,"open_issues_count":21,"forks_count":47,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-05-08T00:39:12.051Z","etag":null,"topics":["docker","video-conferencing","zomm-us"],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mdouchement.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,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-01-29T19:33:10.000Z","updated_at":"2024-12-21T03:07:14.000Z","dependencies_parsed_at":"2024-11-10T09:26:18.780Z","dependency_job_id":null,"html_url":"https://github.com/mdouchement/docker-zoom-us","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mdouchement%2Fdocker-zoom-us","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mdouchement%2Fdocker-zoom-us/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mdouchement%2Fdocker-zoom-us/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mdouchement%2Fdocker-zoom-us/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mdouchement","download_url":"https://codeload.github.com/mdouchement/docker-zoom-us/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252978669,"owners_count":21834910,"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","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":["docker","video-conferencing","zomm-us"],"created_at":"2024-11-10T09:25:53.372Z","updated_at":"2025-05-08T00:39:21.608Z","avatar_url":"https://github.com/mdouchement.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"This project is fully inspired of [sameersbn](https://github.com/sameersbn) [Skype](https://github.com/sameersbn/docker-skype)'s containerization.\n\n# mdouchement/zoom-us\n\n# Introduction\n\n`Dockerfile` to create a [Docker](https://www.docker.com/) container image with [Zoom](http://www.zoom.us) for Linux with support for audio/video calls.\n\nThe image uses [X11](http://www.x.org) and [Pulseaudio](http://www.freedesktop.org/wiki/Software/PulseAudio/) unix domain sockets on the host to enable audio/video support in Zoom. These components are available out of the box on pretty much any modern linux distribution.\n\n## Contributing\n\nIf you find this image useful here's how you can help:\n\n- Send a pull request with your awesome features and bug fixes\n- Help users resolve their [issues](https://github.com/mdouchement/docker-zoom-us/issues?q=is%3Aopen+is%3Aissue).\n\n# Getting started\n\n## Installation\n\nAutomated builds of the image are available on [Dockerhub](https://hub.docker.com/r/mdouchement/zoom-us) and is the recommended method of installation.\n\n```bash\ndocker pull mdouchement/zoom-us:latest\n```\n\nAlternatively you can build the image yourself.\n\n```bash\ndocker build -t mdouchement/zoom-us github.com/mdouchement/docker-zoom-us\n```\n\nWith the image locally available, install the wrapper scripts by running the following as root:\n\n```bash\ndocker run -it --rm \\\n  --volume /usr/local/bin:/target \\\n  mdouchement/zoom-us:latest install\n```\n\nThis will install a wrapper script to launch `zoom`.\n\n\u003e **Note**\n\u003e\n\u003e If Zoom is installed on the the host then the host binary is launched instead of starting a Docker container. To force the launch of Zoom in a container use the `zoom-us-wrapper` script. For example, `zoom-us-wrapper zoom` will launch Zoom inside a Docker container regardless of whether it is installed on the host or not.\n\n## Web Browser / SSO\n\nAdd the following option in `~/.config/zoomus.conf`\n```\nembeddedBrowserForSSOLogin=false\n```\n\nZoom will spawn Iceweasel (Firefox) included in this image and open SSO provider web page.\n\n## How it works\n\nThe wrapper scripts volume mount the X11 and pulseaudio sockets in the launcher container. The X11 socket allows for the user interface display on the host, while the pulseaudio socket allows for the audio output to be rendered on the host.\n\nWhen the image is launched the following directories are mounted as volumes\n\n- `${HOME}/.zoom`\n- `${HOME}/.config`\n- `XDG_DOWNLOAD_DIR` or if it is missing `${HOME}/Downloads`\n- `XDG_DOCUMENTS_DIR` or if it is missing `${HOME}/Documents`\n\nThis makes sure that your profile details are stored on the host and files received via Zoom are available on your host in the appropriate download directory.\n\n**Don't want to expose host's folders to Zoom?**\n\nAdd `ZOOM_HOME` environment variable to namespace all Zoom folders:\n\n```sh\nexport ZOOM_HOME=${HOME}/zoomus\n```\n\n\n# Maintenance\n\n## Upgrading\n\nTo upgrade to newer releases:\n\n  1. Download the updated Docker image:\n\n  ```bash\n  docker pull mdouchement/zoom-us:latest\n  ```\n\n  2. Run `install` to make sure the host scripts are updated.\n\n  ```bash\n  docker run -it --rm \\\n    --volume /usr/local/bin:/target \\\n    mdouchement/zoom-us:latest install\n  ```\n\n## Uninstallation\n\n```bash\ndocker run -it --rm \\\n  --volume /usr/local/bin:/target \\\n  mdouchement/zoom-us:latest uninstall\n```\n\n## Shell Access\n\nFor debugging and maintenance purposes you may want access the containers shell. If you are using Docker version `1.3.0` or higher you can access a running containers shell by starting `bash` using `docker exec`:\n\n```bash\ndocker exec -it zoomus bash\n```\n\n## Troubleshooting\n\n- Zoom basic logs:\n  - `docker logs zoomus`\n  - `ls -l ${ZOOM_HOME:=$HOME}/.zoom/logs` where you can find application logs.\n- Screen sharing:\n  - Try `xhost +SI:localuser:\"$USER\"` [#20](https://github.com/mdouchement/docker-zoom-us/issues/20)\n- Transparent login form:\n  - A possible workaround is to right click on the Zoom icon from the taskbar and select \"About\". The about popup could fix the login form render.\n  - If `Unrecognized OpenGL version` error is in the logs, it could be an issue with Nvidia drivers [#1](https://github.com/mdouchement/docker-zoom-us/issues/1)\n    - @mzcu made a fix [mzcu@ee177a5](https://github.com/mzcu/docker-zoom-us/commit/ee177a5e8915a05a51080301996a8ed4b89552ee) that should work\n    - I recommend you to try his version: https://github.com/mzcu/docker-zoom-us\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmdouchement%2Fdocker-zoom-us","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmdouchement%2Fdocker-zoom-us","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmdouchement%2Fdocker-zoom-us/lists"}