drone-yaml/yaml/pretty/testdata/pipeline_volumes.yml.golden

39 lines
423 B
Plaintext
Raw Normal View History

2019-01-23 00:44:17 +01:00
---
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
2019-01-24 23:46:30 +01:00
- name: empty
temp: {}
2019-01-23 00:44:17 +01:00
- name: sock
host:
path: /var/run/docker.sock
depends_on:
- foo
- bar
...