# drone-docker **Repository Path**: liwen_test_sync_group/drone-docker ## Basic Information - **Project Name**: drone-docker - **Description**: Drone plugin for publishing Docker images - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-12-03 - **Last Updated**: 2025-11-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # drone-docker Drone plugin to build and publish Docker images to a container registry. ## Build Build the binary with the following commands: ``` sh .drone.sh ``` ## Docker Build the Docker image with the following commands: ``` docker build --rm=true -f docker/Dockerfile -t plugins/docker . ``` ## Usage Execute from the working directory: ``` docker run --rm \ -e PLUGIN_TAG=latest \ -e PLUGIN_REPO=octocat/hello-world \ -e DRONE_COMMIT_SHA=d8dbe4d94f15fe89232e0402c6e8a0ddf21af3ab \ -v $(pwd):$(pwd) \ -w $(pwd) \ --privileged \ plugins/docker --dry-run ```