From b311066d240e6f034c8a5749f01897739f26c7bb Mon Sep 17 00:00:00 2001 From: falmp Date: Wed, 18 Mar 2015 19:08:40 -0300 Subject: [PATCH] Fixed --read-only description indentation The wrong indentation was breaking documentation layout with code blocks. Signed-off-by: Francisco Lopes --- docs/man/docker-run.1.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/man/docker-run.1.md b/docs/man/docker-run.1.md index 234d8dc522..7e6aedd738 100644 --- a/docs/man/docker-run.1.md +++ b/docs/man/docker-run.1.md @@ -302,14 +302,14 @@ allow the container nearly all the same access to the host as processes running outside of a container on the host. **--read-only**=*true*|*false* - Mount the container's root filesystem as read only. + Mount the container's root filesystem as read only. - By default a container will have its root filesystem writable allowing processes + By default a container will have its root filesystem writable allowing processes to write files anywhere. By specifying the `--read-only` flag the container will have its root filesystem mounted as read only prohibiting any writes. **--restart**="no" - Restart policy to apply when a container exits (no, on-failure[:max-retry], always) + Restart policy to apply when a container exits (no, on-failure[:max-retry], always) **--rm**=*true*|*false* Automatically remove the container when it exits (incompatible with -d). The default is *false*.