I try to run a task in a docker image, which is not uploaded to docker hub, but instead installed locally (using docker build -t tagname/tagname
.) So it exists on the (only) worker.
image_resource:
type: docker-image
source: {repository: tagname/tagname}
However, that approach fails with the following error:
Is there an easy way to have concourse run a docker image without having to push it to docker hub nor to set up a local repository?