drone-docker icon indicating copy to clipboard operation
drone-docker copied to clipboard

Drone plugin for publishing Docker images

Results 96 drone-docker issues
Sort by recently updated
recently updated
newest added

Add a --platform flag so that the user can specify a value for the corresponding flag passed to docker. This is useful in the context of multi-arch builds and buildkit...

Fixes merge conflicts and defects in #336 Will enable https://docs.docker.com/develop/develop-images/build_enhancements/#using-ssh-to-access-private-data-in-builds For example with the following starlark snippet: ``` "settings": { "registry": "xxx.dkr.ecr.us-east-1.amazonaws.com", "repo": "drone-test-build-docker", "dockerfile": "Dockerfile.python", "custom_dns": "169.254.169.253", "ssh_agent": "default",...

**PR Purpose** This PR provides a new setting to the plugin: `ssh_agent`-> Pass host ssh agent to the Image. Under the hood this triggers the `--ssh` option to be set...

Currently, there's an issue when you work with custom context: ```yaml settings: repo: repo/app context: app/ # $ docker build --rm=true -f Dockerfile -t ... app/ ``` It translates to...

When using Docker with Buildkit and inline cache information enabled, docker build will pull image layers to use as cache on demand. As a result, unconditionally pulling the cache is...

Added an insecure_mirror option to allow mirror registry to be set as an insecure registry

Add flag daemon.insecure-registry to indecate multiple insecure registry. Append insecure registry parameters when starting daemon.

Adds support for the [ECR Public](https://aws.amazon.com/blogs/aws/amazon-ecr-public-a-new-public-container-registry/) registry. There is a fork (https://github.com/cstyan/drone-docker) which can already be used for the purpose. However, it produces Docker image only for x86-64 architecture and...

PR is coming from this discussion here : https://discourse.drone.io/t/docker-parallel-build-failing-anyone/8406/6 Adding iptables option as discussed