{"id":20323849,"url":"https://github.com/tibor309/edge","last_synced_at":"2025-09-22T23:31:46.360Z","repository":{"id":249042329,"uuid":"825038646","full_name":"tibor309/edge","owner":"tibor309","description":"🌊 Microsoft Edge accessible from another web browser","archived":false,"fork":false,"pushed_at":"2024-12-27T15:34:37.000Z","size":36,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-12-27T16:29:37.267Z","etag":null,"topics":["docker","kasm","kasmvnc","microsoft-edge","msedge","web-browser"],"latest_commit_sha":null,"homepage":"","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tibor309.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"ko_fi":"tibor309"}},"created_at":"2024-07-06T15:40:09.000Z","updated_at":"2024-12-27T15:31:03.000Z","dependencies_parsed_at":"2024-07-21T17:15:45.401Z","dependency_job_id":"b722ca19-19c4-4fc0-b96e-7440c254952e","html_url":"https://github.com/tibor309/edge","commit_stats":null,"previous_names":["tibor309/edge"],"tags_count":0,"template":false,"template_full_name":"github/codespaces-blank","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tibor309%2Fedge","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tibor309%2Fedge/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tibor309%2Fedge/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tibor309%2Fedge/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tibor309","download_url":"https://codeload.github.com/tibor309/edge/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":233905074,"owners_count":18748581,"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","kasm","kasmvnc","microsoft-edge","msedge","web-browser"],"created_at":"2024-11-14T19:30:01.551Z","updated_at":"2025-09-22T23:31:46.351Z","avatar_url":"https://github.com/tibor309.png","language":"Dockerfile","funding_links":["https://ko-fi.com/tibor309"],"categories":[],"sub_categories":[],"readme":"# 🌊 Microsoft Edge Browser\nThis container allows you to use [microsoft edge][msedge] trough another web browser using [kasmvnc][kasm].\n\n\u003e [!WARNING]\n\u003e This repo and package has been deprecated, due to lack of interest. If you need an updated version, you'll need to rebuild the image yourself!\n\n## Setup\nTo set up the container, you can either use docker-compose or the docker cli. You can also use options and additional settings/mods from linuxserver.io. For updating the container, simply re-pull the image, and deploy it. The [beta][beta_build] and [dev][dev_build] versions of the browser are also availlable!\n\n### [docker-compose][dcompose] (recommended)\n```yaml\n---\nservices:\n  msedge:\n    image: ghcr.io/tibor309/edge:latest\n    container_name: microsoft-edge\n    security_opt:\n      - seccomp:unconfined #optional\n    environment:\n      - PUID=1000\n      - PGID=1000\n      - TZ=Etc/UTC\n      - EDGE_CLI=https://www.github.com/ #optional\n    volumes:\n      - /path/to/config:/config\n    ports:\n      - 3000:3000\n      - 3001:3001\n    shm_size: \"1gb\"\n    restart: unless-stopped\n```\n\n### [docker-cli][dcli]\n```bash\ndocker run -d \\\n  --name=microsoft-edge \\\n  --security-opt seccomp=unconfined `#optional` \\\n  -e PUID=1000 \\\n  -e PGID=1000 \\\n  -e TZ=Etc/UTC \\\n  -e EDGE_CLI=https://www.github.com/ `#optional` \\\n  -p 3000:3000 \\\n  -p 3001:3001 \\\n  -v /path/to/config:/config \\\n  --shm-size=\"1gb\" \\\n  --restart unless-stopped \\\n  ghcr.io/tibor309/edge:latest\n```\n\n## Config\nYou can also use additional parameters and settings from the [linuxserver/docker-chromium][chromium-setup] project!\n\n| Parameter | Function |\n| :----: | --- |\n| `-p 3000` | Edge desktop gui. |\n| `-p 3001` | HTTPS Edge desktop gui. |\n| `-e PUID=1000` | For UserID |\n| `-e PGID=1000` | For GroupID |\n| `-e TZ=Etc/UTC` | Specify a timezone to use, see this [list][tz]. |\n| `-e EDGE_CLI=https://www.github.com/` | Specify one or multiple [CLI flags][flags], this string will be passed to the application in full. |\n| `-v /config` | Users home directory in the container, stores local files and settings |\n| `--shm-size=` | This is needed for any modern website to function like youtube. |\n| `--security-opt seccomp=unconfined` | For Docker Engine only, many modern gui apps need this to function on older hosts as syscalls are unknown to Docker. |\n\n## Usage\nTo access the container, navigate to the ip address for your machine with the port you provided at the setup.\n\n* [http://yourhost:3000/][link]\n* [https://yourhost:3001/][link]\n\n\n[beta_build]: https://github.com/tibor309/edge/tree/beta\n[dev_build]: https://github.com/tibor309/edge/tree/dev\n\n[msedge]: https://www.microsoft.com/en-us/edge\n[kasm]: https://kasmweb.com/kasmvnc\n[chromium-setup]: https://github.com/linuxserver/docker-chromium/blob/master/README.md#application-setup\n\n[dcompose]: https://docs.linuxserver.io/general/docker-compose\n[dcli]: https://docs.docker.com/engine/reference/commandline/cli/\n[flags]: https://peter.sh/experiments/chromium-command-line-switches/\n[tz]: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List\n[link]: https://www.youtube.com/watch?v=dQw4w9WgXcQ\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftibor309%2Fedge","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftibor309%2Fedge","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftibor309%2Fedge/lists"}