This repository has been archived on 2025-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
Files
drone-runner-podman/engine/testdata/volume_temp.yml
2023-10-04 23:19:30 -05:00

32 lines
399 B
YAML

kind: pipeline
type: podman
name: default
clone:
disable: true
steps:
- name: write
pull: if-not-exists
image: alpine
volumes:
- name: test
path: /tmp
commands:
- pwd
- echo "hello" > /tmp/greetings.txt
- name: read
pull: if-not-exists
image: alpine
volumes:
- name: test
path: /tmp
commands:
- pwd
- cat /tmp/greetings.txt
volumes:
- name: test
temp: {}