You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
drone-yaml/yaml/pretty/testdata/services.yml.golden

41 lines
455 B
Plaintext

---
kind: pipeline
name: default
platform:
os: linux
arch: amd64
steps:
- name: test
image: golang
commands:
- go build
- go test -v
services:
- name: redis
image: redis:localhost
entrypoint:
- /bin/redis-server
command:
- --port
- 6380
ports:
- 6379
- name: mysql
image: mysql:latest
environment:
MYSQL_PASSWORD:
from_secret: password
MYSQL_USERNAME: root
ports:
- 3306
depends_on:
- foo
- bar
...