From 4fe16b5b0ada4b335c1d6648f18a7e94dc0a65cd Mon Sep 17 00:00:00 2001 From: Eric E Date: Thu, 18 Jun 2020 23:30:51 -0400 Subject: [PATCH] fixed section formatting The section was displaying improperly, detracting from user understanding --- docs/tutorial/index.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/docs/tutorial/index.md b/docs/tutorial/index.md index 601b838..893408a 100644 --- a/docs/tutorial/index.md +++ b/docs/tutorial/index.md @@ -18,12 +18,14 @@ You'll notice a few flags being used. Here's some more info on them: - `-p 80:80` - map port 80 of the host to port 80 in the container - `docker/getting-started` - the image to use -!!! info "Pro tip" - You can combine single character flags to shorten the full command. - As an example, the command above could be written as: - ``` +###### Pro tip + +You can combine single character flags to shorten the full command. +As an example, the command above could be written as: + +```cli docker run -dp 80:80 docker/getting-started - ``` +``` ## The Docker Dashboard