github.com/drone/go-convert@v0.0.0-20240307072510-6bd371c65e61/convert/bitbucket/yaml/testdata/definitions/example8.yaml (about)

     1  definitions:
     2    services:
     3      my-postgresql-db:
     4        image: postgres:latest # Official PostgreSQL image from DockerHub: https://hub.docker.com/_/postgres
     5        variables:
     6          POSTGRES_PASSWORD: $MY_POSTGRES_PASSWORD
     7  
     8  pipelines:
     9    default:
    10      - step:
    11          name: Hello world example
    12          services:
    13            - my-postgresql-db
    14          script:
    15            - echo "Hello, World"