From d889ba512491cd9a13e3717912440bf706435301 Mon Sep 17 00:00:00 2001 From: Fabian Schlenz Date: Mon, 13 Feb 2017 13:08:47 +0100 Subject: [PATCH] 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. --- dup.rb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dup.rb b/dup.rb index 723ed04..08c3a22 100755 --- a/dup.rb +++ b/dup.rb @@ -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'"