Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions runtime-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
Lifecycle hooks allow custom events for different points in a container's runtime.
Presently there are `Prestart`, `Poststart` and `Poststop`.

* [`Prestart`](#prestart) is a list of hooks to be run before the container process is executed
* [`Poststart`](#poststart) is a list of hooks to be run immediately after the container process is started
* [`Poststop`](#poststop) is a list of hooks to be run after the container process exits
* [`Prestart`](#prestart) is a list of hooks to be run just after the container is created but before the container is started
* [`Poststart`](#poststart) is a list of hooks to be run immediately after the container is started
* [`Poststop`](#poststop) is a list of hooks to be run after the container is stopped

Hooks allow one to run code before/after various lifecycle events of the container.
Hooks MUST be called in the listed order.
Expand Down