fixed section formatting

The section was displaying improperly, detracting from user understanding
This commit is contained in:
Eric E 2020-06-18 23:30:51 -04:00 committed by GitHub
parent 35dc319a76
commit 4fe16b5b0a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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