mirror of https://github.com/docker/compose.git
15 lines
396 B
YAML
15 lines
396 B
YAML
services:
|
|
safe:
|
|
image: 'alpine'
|
|
init: true
|
|
command: ['/bin/sh', '-c', 'sleep infinity'] # never exiting
|
|
failure:
|
|
image: 'alpine'
|
|
init: true
|
|
command: ['/bin/sh', '-c', 'sleep 1 ; echo "exiting with error" ; exit 42']
|
|
test:
|
|
image: 'alpine'
|
|
init: true
|
|
command: ['/bin/sh', '-c', 'sleep 99999 ; echo "tests are OK"'] # very long job
|
|
depends_on: [safe]
|