github.com/drone/go-convert@v0.0.0-20240307072510-6bd371c65e61/convert/bitbucket/yaml/testdata/definitions/example8.yaml.golden (about) 1 { 2 "definitions": { 3 "services": { 4 "my-postgresql-db": { 5 "image": "postgres:latest", 6 "variables": { 7 "POSTGRES_PASSWORD": "$MY_POSTGRES_PASSWORD" 8 } 9 } 10 } 11 }, 12 "pipelines": { 13 "default": [ 14 { 15 "step": { 16 "name": "Hello world example", 17 "services": [ 18 "my-postgresql-db" 19 ], 20 "script": [ 21 "echo \"Hello, World\"" 22 ] 23 } 24 } 25 ] 26 } 27 }