{"id":20323855,"url":"https://github.com/tibor309/brave","last_synced_at":"2025-10-23T16:34:04.060Z","repository":{"id":222985723,"uuid":"758888321","full_name":"tibor309/brave","owner":"tibor309","description":"🦁 Brave browser accessible trough another web browser","archived":false,"fork":false,"pushed_at":"2025-02-17T07:59:05.000Z","size":49,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-17T08:33:57.276Z","etag":null,"topics":["brave","brave-browser","container","docker","kasm","kasmvnc","linux","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-02-17T11:27:27.000Z","updated_at":"2025-02-17T07:57:49.000Z","dependencies_parsed_at":"2024-02-25T13:43:59.907Z","dependency_job_id":"a0da334f-06a3-4290-a6f0-4ec655c8febb","html_url":"https://github.com/tibor309/brave","commit_stats":null,"previous_names":["tibor309/docker-brave","tibor309/brave"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tibor309%2Fbrave","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tibor309%2Fbrave/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tibor309%2Fbrave/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tibor309%2Fbrave/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tibor309","download_url":"https://codeload.github.com/tibor309/brave/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241827168,"owners_count":20026601,"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":["brave","brave-browser","container","docker","kasm","kasmvnc","linux","web-browser"],"created_at":"2024-11-14T19:30:02.162Z","updated_at":"2025-10-23T16:34:04.055Z","avatar_url":"https://github.com/tibor309.png","language":"Dockerfile","funding_links":["https://ko-fi.com/tibor309"],"categories":[],"sub_categories":[],"readme":"# 🦁 [Brave](https://github.com/tibor309/brave)\n\nThis container allows you to use the [Brave](https://brave.com/) web browser trough another web browser using KasmVNC. Brave is a fast, private and secure web browser for PC, Mac and mobile.\n\n![brave](https://github.com/user-attachments/assets/8573341d-d7a2-403c-8ddd-4edf7e7172a3)\n\n## Setup\n\nTo set up the container, you can use docker-compose or the docker cli. Unless a parameter is flagged as 'optional', it is *mandatory* and a value must be provided. This container is using a linuxserver.io base, so you can use their [mods](https://github.com/linuxserver/docker-mods) and configurations to enable additional functionality within the container.\n\n\u003e [!NOTE]\n\u003e This image is also available on [Docker Hub](https://hub.docker.com/r/tibordev/brave) under `tibordev/brave`.\n\n### [docker-compose](https://docs.linuxserver.io/general/docker-compose) (recommended)\n\n```yaml\n---\nservices:\n  brave:\n    image: ghcr.io/tibor309/brave:latest\n    container_name: brave-browser\n    security_opt:\n      - seccomp:unconfined #optional\n    environment:\n      - PUID=1000\n      - PGID=1000\n      - TZ=Etc/UTC\n      - BRAVE_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    hostname: brave #optional\n```\n\n### [docker-cli](https://docs.docker.com/engine/reference/commandline/cli/)\n\n```bash\ndocker run -d \\\n  --name=brave-browser \\\n  --security-opt seccomp=unconfined `#optional` \\\n  -e PUID=1000 \\\n  -e PGID=1000 \\\n  -e TZ=Etc/UTC \\\n  -e BRAVE_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  --hostname brave `#optional` \\\n  ghcr.io/tibor309/brave:latest\n```\n\n## Security\n\nBy default, this container has no authentication. Configure the optional environment variables `CUSTOM_USER` and `PASSWORD` to enable basic HTTP auth. This should only be used to locally secure the container on a local network. If you're exposing this container to the internet, it's recommended to use a reverse proxy or a VPN such as [SWAG](https://github.com/linuxserver/docker-swag) or Tailscale.\n\n## Config\n\nContainers are configured using parameters passed at runtime (such as those above). These parameters are separated by a colon and indicate `\u003cexternal\u003e:\u003cinternal\u003e` respectively. For example, `-p 8080:80` would expose port `80` from inside the container to be accessible from the host's IP on port `8080` outside the container. Further options can be found on the [KasmVNC Base Images](https://github.com/linuxserver/docker-baseimage-kasmvnc#options) repo.\n\n| Parameter | Function |\n| :----: | --- |\n| `-p 3000` | HTTP Brave desktop gui. |\n| `-p 3001` | HTTPS Brave 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](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). |\n| `-e BRAVE_CLI=https://www.github.com/` | Specify one or multiple [Brave CLI flags](https://support.brave.com/hc/en-us/articles/360044860011-How-Do-I-Use-Command-Line-Flags-in-Brave), 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| `--hostname brave` | Hostname for the container. It is advised to change this to your own if you're planning to use Brave Sync. |\n\n## Updating\n\nThis image is updated monthly. To update the app, you'll need to pull the latest image and redeploy the container with your configuration. It's **not** recommended to update the app inside the container. Updating this way could cause issues with configurations and mods.\n\n## Usage\n\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/](https://www.youtube.com/watch?v=dQw4w9WgXcQ)\n* [https://yourhost:3001/](https://www.youtube.com/watch?v=dQw4w9WgXcQ)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftibor309%2Fbrave","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftibor309%2Fbrave","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftibor309%2Fbrave/lists"}