diff --git a/labs/liascript/labs-docker-fundamentals.md b/labs/liascript/labs-docker-fundamentals.md index a440f1a..a8d625c 100644 --- a/labs/liascript/labs-docker-fundamentals.md +++ b/labs/liascript/labs-docker-fundamentals.md @@ -174,10 +174,8 @@ docker container stop >Notice it takes a long time (about 10 seconds) to return. When a container is stopped, there >is a two step process: - ->>- A SIGTERM is sent to the PID 1 process in the container, asking but not forcing it to stop ->>- After 10 seconds, a SIGKILL is sent to the PID 1 process, forcing it to return and the container to enter its EXITED state. - +>>- A `SIGTERM` is sent to the `PID 1` process in the container, asking but not forcing it to stop +>>- After 10 seconds, a `SIGKILL` is sent to the `PID 1` process, forcing it to return and the container to enter its `EXITED` state.

Step 5