Hello World in container

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