Fixed two bugs in the sample yaml: `interactive` was split into `tty` and `stdin_open` following the compose file docs. And `stop_grace_period` requires an integer, not a time string.

This commit is contained in:
Fabian Schlenz 2017-02-13 13:08:47 +01:00
parent 7146cdb027
commit d889ba5124
1 changed files with 3 additions and 2 deletions

5
dup.rb
View File

@ -49,11 +49,12 @@ def get_sample(name="container")
container_name: "Something"
mem_limit: 125M
interactive: false
stdin_open: false
tty: false
detach: true
remove: false
stop_signal: SIGUSR1
stop_grace_period: 5s
stop_grace_period: 5
before_build:
- "echo 'Starting build'"