{"id":15020027,"url":"https://github.com/docker/packaging","last_synced_at":"2026-03-04T23:01:28.363Z","repository":{"id":60293672,"uuid":"530133432","full_name":"docker/packaging","owner":"docker","description":"Docker Packaging (deb, rpm, static)","archived":false,"fork":false,"pushed_at":"2026-02-26T11:56:59.000Z","size":1630,"stargazers_count":31,"open_issues_count":14,"forks_count":30,"subscribers_count":5,"default_branch":"main","last_synced_at":"2026-02-26T17:14:45.362Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://hub.docker.com/r/dockereng/packaging","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/docker.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","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-08-29T08:36:14.000Z","updated_at":"2026-02-18T16:11:21.000Z","dependencies_parsed_at":"2026-02-18T12:06:16.318Z","dependency_job_id":null,"html_url":"https://github.com/docker/packaging","commit_stats":{"total_commits":553,"total_committers":36,"mean_commits":15.36111111111111,"dds":0.4792043399638336,"last_synced_commit":"3ac603d1bfbf4f1e347c2a35e75585afae9d7276"},"previous_names":[],"tags_count":140,"template":false,"template_full_name":null,"purl":"pkg:github/docker/packaging","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/docker%2Fpackaging","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/docker%2Fpackaging/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/docker%2Fpackaging/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/docker%2Fpackaging/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/docker","download_url":"https://codeload.github.com/docker/packaging/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/docker%2Fpackaging/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30098085,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-04T22:49:54.894Z","status":"ssl_error","status_checked_at":"2026-03-04T22:49:48.883Z","response_time":59,"last_error":"SSL_read: 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":[],"created_at":"2024-09-24T19:54:28.842Z","updated_at":"2026-03-04T23:01:28.321Z","avatar_url":"https://github.com/docker.png","language":"Dockerfile","readme":"# Docker Packaging\n\n## :test_tube: Experimental\n\nThis repository is considered **EXPERIMENTAL** and under active development\nuntil further notice. Please refer to [`docker-ce-packaging` repository](https://github.com/docker/docker-ce-packaging)\nto request changes to the packaging process.\n\n## About\n\nThis repository creates packages (deb, rpm, static) for various projects and\nare published as a Docker image [on Docker Hub](https://hub.docker.com/r/dockereng/packaging).\n\n___\n\n* [Release](#release)\n* [Build](#build)\n  * [Requirements](#requirements)\n  * [Usage](#usage)\n* [Contributing](#contributing)\n\n## Release\n\nPackages are published to [Docker Hub](https://hub.docker.com/r/dockereng/packaging)\nas non-runnable images that only contains the artifacts. You can check the [GitHub Releases](https://github.com/docker/packaging/releases)\nfor the list of published Docker tags.\n\n\u003e [!NOTE]\n\u003e We are also publishing nightly builds using the [`nightly-\u003cproject\u003e-\u003cversion\u003e` tags](https://hub.docker.com/r/dockereng/packaging/tags?page=1\u0026name=nightly-).\n\nFor testing purpose you can use a tool like [Undock](https://github.com/crazy-max/undock)\nto extract packages:\n\n```shell\n# extract packages for all platforms and output to ./bin/undock folder\n$ undock --wrap --rm-dist --all dockereng/packaging:buildx-v0.9.1 ./bin/undock\n```\n\n## Build\n\n### Requirements\n\n* [Docker](https://docs.docker.com/engine/install/) 20.10 or newer\n* [Buildx](https://docs.docker.com/build/install-buildx/) 0.21.0 or newer\n\nBefore building packages, you need to use a compatible [Buildx driver](https://docs.docker.com/build/building/drivers/)\nto be able to build multi-plaform packages such as `docker-container`:\n\n```shell\n# create docker-container builder and use it by default\n# https://docs.docker.com/build/building/drivers/docker-container/\n$ docker buildx create --driver docker-container --name mybuilder --use --bootstrap\n```\n\n\u003e [!NOTE]\n\u003e Some packages don't have cross-compilation support, and therefore QEMU will\n\u003e be used. As it can be slow to build, it is recommended to use a builder with\n\u003e native nodes.\n\n### Usage\n\n```shell\n# build all packages for all distros\n$ docker buildx bake pkg\n# build buildx package for debian 12\n$ docker buildx bake pkg-buildx-debian12\n# build buildx package for debian 12\n$ docker buildx bake pkg-buildx-debian12\n# build all packages for all distros (only local platform)\n$ LOCAL_PLATFORM=1 docker buildx bake pkg\n```\n\nTo create a new release for a package:\n\n```shell\n# build all distros for buildx v0.24.0 and output to ./bin folder\n$ PKG_REF=v0.24.0 docker buildx bake pkg-buildx-*\n# build and push image to dockereng/packaging:buildx-v0.24.0. \"release\" target\n# will use the \"bin\" folder as named context to create the image with artifacts\n# previously built.\n$ docker buildx bake --push --set *.tags=dockereng/packaging:buildx-v0.24.0 release-buildx \n```\n\n## Contributing\n\nWant to contribute? Awesome! You can find information about contributing to\nthis project in the [CONTRIBUTING.md](/.github/CONTRIBUTING.md)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdocker%2Fpackaging","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdocker%2Fpackaging","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdocker%2Fpackaging/lists"}