{"id":36745379,"url":"https://github.com/owncloud-ci/drone-docker-buildx","last_synced_at":"2026-01-12T12:32:14.342Z","repository":{"id":204431785,"uuid":"711834863","full_name":"owncloud-ci/drone-docker-buildx","owner":"owncloud-ci","description":"Drone plugin to build multiarch Docker images with buildx","archived":false,"fork":false,"pushed_at":"2026-01-10T05:12:56.000Z","size":924,"stargazers_count":2,"open_issues_count":11,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-10T23:16:15.434Z","etag":null,"topics":["drone","drone-plugin"],"latest_commit_sha":null,"homepage":"https://hub.docker.com/r/owncloudci/drone-docker-buildx","language":"Go","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/owncloud-ci.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-10-30T09:15:13.000Z","updated_at":"2024-05-27T03:44:51.000Z","dependencies_parsed_at":"2026-01-10T22:00:19.470Z","dependency_job_id":null,"html_url":"https://github.com/owncloud-ci/drone-docker-buildx","commit_stats":null,"previous_names":["owncloud-ci/drone-docker-buildx"],"tags_count":14,"template":false,"template_full_name":null,"purl":"pkg:github/owncloud-ci/drone-docker-buildx","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/owncloud-ci%2Fdrone-docker-buildx","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/owncloud-ci%2Fdrone-docker-buildx/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/owncloud-ci%2Fdrone-docker-buildx/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/owncloud-ci%2Fdrone-docker-buildx/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/owncloud-ci","download_url":"https://codeload.github.com/owncloud-ci/drone-docker-buildx/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/owncloud-ci%2Fdrone-docker-buildx/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28338978,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-12T12:22:26.515Z","status":"ssl_error","status_checked_at":"2026-01-12T12:22:10.856Z","response_time":98,"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":["drone","drone-plugin"],"created_at":"2026-01-12T12:32:14.276Z","updated_at":"2026-01-12T12:32:14.325Z","avatar_url":"https://github.com/owncloud-ci.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# drone-docker-buildx\n\n[![Build Status](https://drone.owncloud.com/api/badges/owncloud-ci/drone-docker-buildx/status.svg)](https://drone.owncloud.com/owncloud-ci/drone-docker-buildx)\n[![Docker Hub](https://img.shields.io/docker/v/owncloudci/drone-docker-buildx?logo=docker\u0026label=dockerhub\u0026sort=semver\u0026logoColor=white)](https://hub.docker.com/r/owncloudci/drone-docker-buildx)\n[![GitHub contributors](https://img.shields.io/github/contributors/owncloud-ci/drone-docker-buildx)](https://github.com/owncloud-ci/drone-docker-buildx/graphs/contributors)\n[![Source: GitHub](https://img.shields.io/badge/source-github-blue.svg?logo=github\u0026logoColor=white)](https://github.com/owncloud-ci/drone-docker-buildx)\n[![License: Apache-2.0](https://img.shields.io/github/license/owncloud-ci/drone-docker-buildx)](https://github.com/owncloud-ci/drone-docker-buildx/blob/main/LICENSE)\n\nDrone plugin to build multiarch Docker images with buildx. This plugin is a fork of [drone-plugins/drone-docker](https://github.com/drone-plugins/drone-docker).\n\n## Usage\n\n\u003e **IMPORTANT:** Be aware that the this plugin requires [privileged](https://docs.drone.io/pipeline/docker/syntax/steps/#privileged-mode) capabilities, otherwise the integrated Docker daemon is not able to start.\n\n```yaml\nkind: pipeline\ntype: docker\nname: default\n\nsteps:\n  - name: docker\n    image: owncloudci/drone-docker-buildx\n    privileged: true\n    settings:\n      username: octocat\n      password: secure\n      repo: octocat/example\n      tags: latest\n```\n\n## Build\n\nBuild the binary with the following command:\n\n```console\nmake build\n```\n\nBuild the Docker image with the following command:\n\n```console\ndocker build --file Dockerfile.multiarch --tag owncloudci/drone-docker-buildx .\n```\n\n## Test\n\n```console\ndocker run --rm \\\n  -e PLUGIN_TAG=latest \\\n  -e PLUGIN_REPO=octocat/hello-world \\\n  -e DRONE_COMMIT_SHA=00000000 \\\n  -v $(pwd):$(pwd) \\\n  -w $(pwd) \\\n  --privileged \\\n  owncloudci/drone-docker-buildx --dry-run\n```\n\n## Releases\n\nCreate and push the new tag to trigger the CI release process:\n\n```console\ngit tag v2.10.3\ngit push origin v2.10.3\n```\n\n## License\n\nThis project is licensed under the Apache 2.0 License - see the [LICENSE](https://github.com/owncloud-ci/drone-docker-buildx/blob/main/LICENSE) file for details.\n\n## Copyright\n\n```text\nCopyright (c) 2022 ownCloud GmbH\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fowncloud-ci%2Fdrone-docker-buildx","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fowncloud-ci%2Fdrone-docker-buildx","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fowncloud-ci%2Fdrone-docker-buildx/lists"}