I’ve scoured the documentation, github issues and the discourse so forgive me if this has been requested before. Afaik, this isn’t an enterprise feature but correct me if I’m wrong.
It would be useful to be able to define a host-volume per .drone.yml
instead of for each stage, roughly as follows:
workspace:
volumes:
- /var/run/docker.sock:/var/run/docker.sock
pipeline:
build:
image: docker
commands:
- docker build -t <tag> .
test:
image: docker
commands:
- docker run ..