{"id":47821583,"url":"https://github.com/jsanchez0x/qmk_container","last_synced_at":"2026-04-03T19:11:00.403Z","repository":{"id":40345961,"uuid":"477430753","full_name":"jsanchez0x/qmk_container","owner":"jsanchez0x","description":"Docker container to run QMK utilities","archived":false,"fork":false,"pushed_at":"2026-03-05T18:57:45.000Z","size":235,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-05T21:52:59.654Z","etag":null,"topics":["docker","docker-image"],"latest_commit_sha":null,"homepage":"https://hub.docker.com/r/jsanchez0x/qmk_container","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jsanchez0x.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-04-03T18:32:15.000Z","updated_at":"2026-03-05T18:57:48.000Z","dependencies_parsed_at":"2024-01-05T21:28:59.972Z","dependency_job_id":"dd971c10-7423-4b1c-bb85-7f34338d9973","html_url":"https://github.com/jsanchez0x/qmk_container","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/jsanchez0x/qmk_container","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jsanchez0x%2Fqmk_container","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jsanchez0x%2Fqmk_container/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jsanchez0x%2Fqmk_container/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jsanchez0x%2Fqmk_container/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jsanchez0x","download_url":"https://codeload.github.com/jsanchez0x/qmk_container/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jsanchez0x%2Fqmk_container/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31372199,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-03T17:53:18.093Z","status":"ssl_error","status_checked_at":"2026-04-03T17:53:17.617Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["docker","docker-image"],"created_at":"2026-04-03T19:10:59.462Z","updated_at":"2026-04-03T19:11:00.399Z","avatar_url":"https://github.com/jsanchez0x.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# qmk_container [![Docker Image CI](https://github.com/jsanchez0x/qmk_container/actions/workflows/docker-image.yml/badge.svg)](https://github.com/jsanchez0x/qmk_container/actions/workflows/docker-image.yml) [![Generic badge](https://img.shields.io/badge/Docker-Hub-blue.svg?logo=docker\u0026logoColor=white)](https://hub.docker.com/r/jsanchez0x/qmk_container)\n\n\nDockerfile to generate a container with everything needed to use QMK(*Quantum Mechanical Keyboard*).  \nThe size of the extracted image is approximately 4.6GB.\n\n## Geting the image\n\n### OPTION 1: Pulling from Docker Hub (*recommended*)\n```bash\ndocker pull jsanchez0x/qmk_container\n```\n\n### OPTION 2: Building the image manually\n```bash\ngit clone https://github.com/jsanchez0x/qmk_container.git\ndocker build --rm --tag jsanchez0x/qmk_container:latest qmk_container\n```\n\n\n## Instructions\n\n### 1.- Preparing the environment\nIt is necessary to create some working directories. For example:\n```bash\nmkdir -p $HOME/qmk/firmwares $HOME/qmk/keyboards\n```\n\n### 2.- Clone QMK firmware repository\nYou need to have the source code files. You can get them from the [official QMK repository](https://github.com/qmk/qmk_firmware) (keyboards directory) and copy it into the *$HOME/qmk/keyboards* directory.\n\nExample for the *YMDK Wings* PCB:\n```bash\ngit clone https://github.com/qmk/qmk_firmware.git\ncp -r qmk_firmware/keyboards/ymdk $HOME/qmk/keyboards/\n```\n\n### 3.- Compiling the firmware\nRun the *qmk_compile* command for execute the compilation in the container. It is recommended to share a directory in order to have the project on the host machine and the compiled firmware is also generated on the host machine.\n\nFollowing the previous example:\n```bash\ndocker run --rm -it \\\n        --name qmk_container \\\n        -v $HOME/qmk/keyboards/:/qmk_firmware/keyboards/ \\\n        -v $HOME/qmk/firmwares/:/qmk_firmware/.build/ \\\n        jsanchez0x/qmk_container:latest qmk_compile\n```\n\nThe keyboard and keymap will be requested. Continuing with the example:\n\u003e *Keyboard (i.e. kbdfans/kbd67/mkiirgb/v2):*  \n\u003e **ymdk/wings**  \n\u003e *Keymap (i.e. via):*  \n\u003e**default**\n\u003e\n\u003e*Executing compilation...*\n\n\n## More info\nMore information on how to use this image can be found in the official [QMK documentation](https://docs.qmk.fm/#/).\n\n\n## Credits\nOfficial [QMK base container](https://github.com/qmk/qmk_base_container)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjsanchez0x%2Fqmk_container","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjsanchez0x%2Fqmk_container","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjsanchez0x%2Fqmk_container/lists"}