You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
807 B
Groff
26 lines
807 B
Groff
jobs:
|
|
- name: hello-world-job
|
|
plan:
|
|
- task: hello-world-task
|
|
config:
|
|
# Tells Concourse which type of worker this task should run on
|
|
platform: linux
|
|
# This is one way of telling Concourse which container image to use for a
|
|
# task. We'll explain this more when talking about resources
|
|
image_resource:
|
|
type: registry-image
|
|
source:
|
|
repository: busybox # images are pulled from docker hub by default
|
|
# The command Concourse will run inside the container
|
|
# echo "Hello world!"
|
|
# run:
|
|
# path: echo
|
|
# args: ["Hello world!"]
|
|
outputs:
|
|
- name: the-artifact
|
|
run:
|
|
# Change the command to `ls -lF` to see
|
|
# what the task sees in its working directory
|
|
path: ls
|
|
args: ["-lF"]
|