drone-yaml/yaml/pretty/testdata/pipeline_volumes.yml
2019-01-24 14:46:30 -08:00

33 lines
381 B
YAML

---
kind: pipeline
name: default
steps:
- name: compile
image: golang
commands:
- go test
- go build
- name: build
image: docker
commands:
- docker build .
volumes:
- name: sock
path: /var/run/docker.sock
volumes:
- name: temp
temp:
medium: memory
- name: empty
temp: {}
- name: sock
host:
path: /var/run/docker.sock
depends_on:
- foo
- bar