github.com/drone/go-convert@v0.0.0-20240307072510-6bd371c65e61/convert/bitbucket/testdata/image/example3.yaml (about) 1 image: bash:latest # https://hub.docker.com/_/bash 2 3 pipelines: 4 default: 5 - step: 6 name: Step using the Bash image 7 script: 8 - bash --version 9 - step: 10 name: Step using the default Bitbucket Pipelines image 11 image: atlassian/default-image:latest # https://hub.docker.com/r/atlassian/default-image/ 12 script: 13 - echo "Hello, World from the default Pipelines image"