mirror of
https://github.com/docker/docs.git
synced 2026-03-27 06:18:55 +07:00
Address review comments
Signed-off-by: Usha Mandya <usha.mandya@docker.com>
This commit is contained in:
@@ -10,7 +10,9 @@ open source and we deeply appreciate contributions from the Docker community!
|
|||||||
|
|
||||||
## Provide feedback
|
## Provide feedback
|
||||||
|
|
||||||
We’d love to hear your feedback. Please file documentation issues only in the docs GitHub repository. You can file a new issue to suggest improvements or if you see any errors in the existing documentation.
|
We’d love to hear your feedback. Please file documentation issues only in the
|
||||||
|
docs GitHub repository. You can file a new issue to suggest improvements or if
|
||||||
|
you see any errors in the existing documentation.
|
||||||
|
|
||||||
Before submitting a new issue, check whether the issue has already been reported. You can join the discussion using an emoji, or by adding a comment to an existing issue. If possible, we recommend that you suggest a fix to the issue by creating a pull request.
|
Before submitting a new issue, check whether the issue has already been reported. You can join the discussion using an emoji, or by adding a comment to an existing issue. If possible, we recommend that you suggest a fix to the issue by creating a pull request.
|
||||||
|
|
||||||
|
|||||||
21
test.md
21
test.md
@@ -152,7 +152,7 @@ so we added a custom ID above the target heading.
|
|||||||
|
|
||||||
- The same as above but using HTML: <img src="/images/banner_image_24512.png" alt="a pretty wide image using HTML"/>
|
- The same as above but using HTML: <img src="/images/banner_image_24512.png" alt="a pretty wide image using HTML"/>
|
||||||
|
|
||||||
[Some Bootstrap image classes](https://v4-alpha.getbootstrap.com/content/images/){: target="_blank" rel="noopener" class="_" }
|
[Some Bootstrap image classes](https://getbootstrap.com/docs/3.4/css/#images){: target="_blank" rel="noopener" class="_" }
|
||||||
might be interesting. You can use them with Markdown or HTML images.
|
might be interesting. You can use them with Markdown or HTML images.
|
||||||
|
|
||||||
- An image using the Bootstrap "thumbnail" class: {: class="img-thumbnail" }
|
- An image using the Bootstrap "thumbnail" class: {: class="img-thumbnail" }
|
||||||
@@ -165,7 +165,7 @@ To embed a YouTube video on a docs page, open the video on YouTube, click **Shar
|
|||||||
|
|
||||||
For example, the video embedded on the Get Started page has the following code:
|
For example, the video embedded on the Get Started page has the following code:
|
||||||
|
|
||||||
```
|
```html
|
||||||
<iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/iqqDU2crIEQ?start=30" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
|
<iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/iqqDU2crIEQ?start=30" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -603,7 +603,7 @@ Examples are shown in the following sections.
|
|||||||
|
|
||||||
A standard note is formatted like this:
|
A standard note is formatted like this:
|
||||||
|
|
||||||
```md
|
```markdown
|
||||||
> Handling transient errors
|
> Handling transient errors
|
||||||
>
|
>
|
||||||
> Note the way the `get_hit_count` function is written. This basic retry
|
> Note the way the `get_hit_count` function is written. This basic retry
|
||||||
@@ -629,7 +629,7 @@ A note renders as follows:
|
|||||||
|
|
||||||
Notes are also formatted like this:
|
Notes are also formatted like this:
|
||||||
|
|
||||||
```md
|
```markdown
|
||||||
> **Note**
|
> **Note**
|
||||||
>
|
>
|
||||||
> This is another way to format a note.
|
> This is another way to format a note.
|
||||||
@@ -639,7 +639,7 @@ Notes are also formatted like this:
|
|||||||
|
|
||||||
Add the `important` class to your blockquotes if you want to tell users to be careful about something:
|
Add the `important` class to your blockquotes if you want to tell users to be careful about something:
|
||||||
|
|
||||||
```md
|
```markdown
|
||||||
> Pssst, wanna know something?
|
> Pssst, wanna know something?
|
||||||
>
|
>
|
||||||
> You include a small description here telling users to be on the lookout
|
> You include a small description here telling users to be on the lookout
|
||||||
@@ -658,7 +658,7 @@ The 'important' class renders as follows:
|
|||||||
|
|
||||||
Use the `warning` class to let people know this is dangerous or they should pay close attention to this part of the road before moving on:
|
Use the `warning` class to let people know this is dangerous or they should pay close attention to this part of the road before moving on:
|
||||||
|
|
||||||
```md
|
```markdown
|
||||||
> Ouch, don't do that!
|
> Ouch, don't do that!
|
||||||
>
|
>
|
||||||
> Sticking your finger in an electrical outlet can result in an electric shock.
|
> Sticking your finger in an electrical outlet can result in an electric shock.
|
||||||
@@ -673,10 +673,11 @@ The 'warning' class renders as follows:
|
|||||||
>
|
>
|
||||||
> Removing Volumes
|
> Removing Volumes
|
||||||
>
|
>
|
||||||
> By default, named volumes in your compose file are NOT removed when running `docker-compose down`. If you want to
|
> By default, named volumes in your compose file are NOT removed when running
|
||||||
>remove the volumes, you will need to add the `--volumes` flag.
|
> `docker-compose down`. If you want to remove the volumes, you will need to add
|
||||||
|
> the `--volumes` flag.
|
||||||
>
|
>
|
||||||
>The Docker Dashboard does _not_ remove volumes when you delete the app stack.
|
> The Docker Dashboard does _not_ remove volumes when you delete the app stack.
|
||||||
{: .warning}
|
{: .warning}
|
||||||
|
|
||||||
## Upgrade CTA
|
## Upgrade CTA
|
||||||
@@ -798,7 +799,7 @@ syntax for comments in JSON!
|
|||||||
|
|
||||||
### Markdown
|
### Markdown
|
||||||
|
|
||||||
```md
|
```markdown
|
||||||
# Hello
|
# Hello
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user