{"id":25232216,"url":"https://github.com/leoliu0605/docker-arm-none-eabi-gcc","last_synced_at":"2026-04-09T21:56:35.744Z","repository":{"id":206039605,"uuid":"715632782","full_name":"leoliu0605/docker-arm-none-eabi-gcc","owner":"leoliu0605","description":"Docker images for arm-none-eabi-gcc with both x86_64 and ARM64 platforms.","archived":false,"fork":false,"pushed_at":"2025-03-01T00:18:55.000Z","size":38,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-29T21:59:00.215Z","etag":null,"topics":["arm-none-eabi","arm-none-eabi-gcc","arm64","docker","docker-image","gcc","gcc-arm","x86","x86-64"],"latest_commit_sha":null,"homepage":"https://hub.docker.com/r/jafee201153/arm-none-eabi-gcc","language":"TypeScript","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/leoliu0605.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,"zenodo":null}},"created_at":"2023-11-07T14:26:43.000Z","updated_at":"2025-03-01T00:18:58.000Z","dependencies_parsed_at":"2023-12-28T06:43:31.427Z","dependency_job_id":"b8df616d-74c9-4b5b-9edd-aefa0b21ad76","html_url":"https://github.com/leoliu0605/docker-arm-none-eabi-gcc","commit_stats":null,"previous_names":["leoli0605/docker-arm-none-eabi-gcc","leoliu0605/docker-arm-none-eabi-gcc"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/leoliu0605/docker-arm-none-eabi-gcc","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leoliu0605%2Fdocker-arm-none-eabi-gcc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leoliu0605%2Fdocker-arm-none-eabi-gcc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leoliu0605%2Fdocker-arm-none-eabi-gcc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leoliu0605%2Fdocker-arm-none-eabi-gcc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/leoliu0605","download_url":"https://codeload.github.com/leoliu0605/docker-arm-none-eabi-gcc/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leoliu0605%2Fdocker-arm-none-eabi-gcc/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273728415,"owners_count":25157197,"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-09-05T02:00:09.113Z","response_time":402,"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":["arm-none-eabi","arm-none-eabi-gcc","arm64","docker","docker-image","gcc","gcc-arm","x86","x86-64"],"created_at":"2025-02-11T12:55:27.436Z","updated_at":"2026-04-09T21:56:35.740Z","avatar_url":"https://github.com/leoliu0605.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![jafee201153/arm-none-eabi-gcc](https://github.com/leoli0605/docker-arm-none-eabi-gcc/actions/workflows/publish.yml/badge.svg)](https://github.com/leoli0605/docker-arm-none-eabi-gcc/actions/workflows/publish.yml)\n[![Docker Pulls](https://img.shields.io/docker/pulls/jafee201153/arm-none-eabi-gcc.svg)](https://hub.docker.com/r/jafee201153/arm-none-eabi-gcc/)\n[![Docker Stars](https://img.shields.io/docker/stars/jafee201153/arm-none-eabi-gcc.svg)](https://hub.docker.com/r/jafee201153/arm-none-eabi-gcc/)\n\n# [arm-none-eabi-gcc (docker image)](https://hub.docker.com/r/jafee201153/arm-none-eabi-gcc)\n\nLet's build your project with `arm-none-eabi-gcc` in a docker container.\n\n## Features\n\n- Based on `ubuntu` (supports `20.04`, `22.04`, and `24.04`)\n- `ubuntu:24.04` is used as the base image for the `latest` tag\n- `git` and `make` are pre-installed\n- Environment variables\n  - `TZ`: Timezone, default is `Asia/Taipei`\n  - `USER_NAME`: User name\n  - `USER_UID`: User ID\n  - `USER_GID`: Group ID\n\n## Usage\n\n```bash\n# Running as root user\nGCC_VERSION=latest \\\nHOST_TZ=$(cat /etc/timezone) \\\ndocker run -it --rm \\\n    -e TZ=$HOST_TZ \\\n    -v \"$(pwd)\":/share \\\n    -w /share \\\n    jafee201153/arm-none-eabi-gcc:$GCC_VERSION /bin/bash\n```\n\n```bash\n# Running as non-root user\nGCC_VERSION=latest \\\nHOST_TZ=$(cat /etc/timezone) \\\nUSER_NAME=$(whoami) \\\nUSER_UID=$(id -u $USER_NAME) \\\nUSER_GID=$(id -g $USER_NAME) \\\ndocker run -it --rm \\\n    -e TZ=$HOST_TZ \\\n    -e USER_NAME=$USER_NAME \\\n    -e USER_UID=$USER_UID \\\n    -e USER_GID=$USER_GID \\\n    -v \"$(pwd)\":/home/$USER_NAME/share \\\n    -w /home/$USER_NAME/share \\\n    jafee201153/arm-none-eabi-gcc:$GCC_VERSION /bin/bash\n```\n\n## Example\n\n```bash\n# Build the project\nGCC_VERSION=latest \\\nHOST_TZ=$(cat /etc/timezone) \\\nUSER_NAME=$(whoami) \\\nUSER_UID=$(id -u $USER_NAME) \\\nUSER_GID=$(id -g $USER_NAME) \\\ndocker run -it --rm \\\n    -e TZ=$HOST_TZ \\\n    -e USER_NAME=$USER_NAME \\\n    -e USER_UID=$USER_UID \\\n    -e USER_GID=$USER_GID \\\n    -v \"$(pwd)\":/home/$USER_NAME/share \\\n    -w /home/$USER_NAME/share \\\n    jafee201153/arm-none-eabi-gcc:$GCC_VERSION /bin/bash \\\n    -c \"make clean \u0026\u0026 make all\"\n```\n\n## Support\n\nIf you encounter any issues or have suggestions, please [open an issue](https://github.com/leoli0605/docker-arm-none-eabi-gcc/issues) on our GitHub repository.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fleoliu0605%2Fdocker-arm-none-eabi-gcc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fleoliu0605%2Fdocker-arm-none-eabi-gcc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fleoliu0605%2Fdocker-arm-none-eabi-gcc/lists"}