You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: runtime-config.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,9 +5,9 @@
5
5
Lifecycle hooks allow custom events for different points in a container's runtime.
6
6
Presently there are `Prestart`, `Poststart` and `Poststop`.
7
7
8
-
*[`Prestart`](#prestart) is a list of hooks to be run before the container process is executed
9
-
*[`Poststart`](#poststart) is a list of hooks to be run immediately after the container process is started
10
-
*[`Poststop`](#poststop) is a list of hooks to be run after the container process exits
8
+
*[`Prestart`](#prestart) is a list of hooks to be run just after the container is [created](runtime.md#create) but before the container is [started](runtime.md#start)
9
+
*[`Poststart`](#poststart) is a list of hooks to be run immediately after the container is [started](runtime.md#start)
10
+
*[`Poststop`](#poststop) is a list of hooks to be run after the container is [stopped](runtime.md#stop)
11
11
12
12
Hooks allow one to run code before/after various lifecycle events of the container.
0 commit comments