grim/convey

37339c9211b8
Bust out a bunch of the yaml to yaml files
tasks:
# define our script task
script:
type: docker/run
image: gliderlabs/alpine:edge
# if you need to override the default shell of /bin/sh you can use the
# shell attribute
shell: /bin/ash
# then just define your script as a list of strings
script:
- echo "hello from alpine"
- uptime
plans:
default:
stages:
- tasks: [script]