From 7bad1decfe55621e741f682ce5c9c967d131e00d Mon Sep 17 00:00:00 2001 From: kevinmeredith Date: Wed, 11 May 2016 14:49:24 -0400 Subject: [PATCH] Correct docs for a docker container's clean-up. The 'Unix Signals' (https://en.wikipedia.org/wiki/Unix_signal#Handling_signals) wiki explains that: > 'There are two signals which cannot be intercepted and handled: SIGKILL and SIGSTOP.' Signed-off-by: kevinmeredith Upstream-commit: ef7cd217663c7f6bff5f1d49461c004e86fed867 Component: engine --- components/engine/docs/reference/builder.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/engine/docs/reference/builder.md b/components/engine/docs/reference/builder.md index f1838ee0ea..2da885d30d 100644 --- a/components/engine/docs/reference/builder.md +++ b/components/engine/docs/reference/builder.md @@ -834,7 +834,7 @@ does some more work: # USE the trap if you need to also do manual cleanup after the service is stopped, # or need to start multiple services in the one container -trap "echo TRAPed signal" HUP INT QUIT KILL TERM +trap "echo TRAPed signal" HUP INT QUIT TERM # start service in background here /usr/sbin/apachectl start