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

39 lines
423 B
Plaintext

---
kind: pipeline
name: default
platform:
os: linux
arch: amd64
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
...