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:
parent
7146cdb027
commit
d889ba5124
5
dup.rb
5
dup.rb
@ -49,11 +49,12 @@ def get_sample(name="container")
|
|||||||
|
|
||||||
container_name: "Something"
|
container_name: "Something"
|
||||||
mem_limit: 125M
|
mem_limit: 125M
|
||||||
interactive: false
|
stdin_open: false
|
||||||
|
tty: false
|
||||||
detach: true
|
detach: true
|
||||||
remove: false
|
remove: false
|
||||||
stop_signal: SIGUSR1
|
stop_signal: SIGUSR1
|
||||||
stop_grace_period: 5s
|
stop_grace_period: 5
|
||||||
|
|
||||||
before_build:
|
before_build:
|
||||||
- "echo 'Starting build'"
|
- "echo 'Starting build'"
|
||||||
|
Loading…
Reference in New Issue
Block a user