Hello World in container
examples/pipelines/hello-world-in-container/.gitlab-ci.yml
default: image: busybox:latest script: echo Hello World
- default (required) - an arbitrary name we used for this job
- image: the name of the Docker image, by default from Docker Hub
- script: (required) the command to execute in the Docker container