Is it possible to have images produced by the docker plugin stored in the host images cache? I mean, I would like to launch a pipeline for testing purposes in my local machine and the instantiate a test container without involving any registry. For instance:
[.drone.yml]
- name: docker
image: plugins/docker
settings:
repo: foo/bar
dry_run: true
docker exec --include docker
docker run foo/bar
The idea is to enable a developer to produce an image from a pipeline and being able to test it locally without having to share the credentials of our registry.
Thanks in advance