From c1332a93f024301c7357723f1b810d5125360797 Mon Sep 17 00:00:00 2001 From: Ma Shimiao Date: Fri, 12 May 2017 20:56:36 +0800 Subject: [PATCH] config.md: lifecycle broken links fix fix lifecycle broken links that are left behind Signed-off-by: Ma Shimiao --- config.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.md b/config.md index f1996d08..eace0b2f 100644 --- a/config.md +++ b/config.md @@ -379,12 +379,12 @@ On Linux, for example, they are called after the container namespaces are create ### Poststart -The post-start hooks MUST be called [after the user-specified process is executed](runtime#lifecycle) but before the [`start`](runtime.md#start) operation returns. +The post-start hooks MUST be called [after the user-specified process is executed](runtime.md#lifecycle) but before the [`start`](runtime.md#start) operation returns. For example, this hook can notify the user that the container process is spawned. ### Poststop -The post-stop hooks MUST be called [after the container is deleted](runtime#lifecycle) but before the [`delete`](runtime.md#delete) operation returns. +The post-stop hooks MUST be called [after the container is deleted](runtime.md#lifecycle) but before the [`delete`](runtime.md#delete) operation returns. Cleanup or debugging functions are examples of such a hook. ### Example