Skip to content

Commit 28afc97

Browse files
Merge pull request #21403 from sarahsanders-docker/ENGDOCS-2281
Clean up callout PR
2 parents 00e3c8b + 3709b9b commit 28afc97

File tree

32 files changed

+209
-227
lines changed

32 files changed

+209
-227
lines changed

content/get-started/docker-concepts/the-basics/what-is-a-registry.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ The following diagram shows the relationship between a registry, repositories, a
5252
+---------------------------------------+
5353
```
5454

55-
>**Note**
55+
> [!NOTE]
5656
>
5757
> You can create one private repository and unlimited public repositories using the free version of Docker Hub. For more information, visit the [Docker Hub subscription page](https://www.docker.com/pricing/).
5858
@@ -112,7 +112,7 @@ Don't worry about the specifics of the Dockerfile, as you'll learn about that in
112112
docker build -t <YOUR_DOCKER_USERNAME>/docker-quickstart .
113113
```
114114

115-
>**Note**
115+
> [!NOTE]
116116
>
117117
> Make sure you include the dot (.) at the end of the `docker build` command. This tells Docker where to find the Dockerfile.
118118

content/get-started/workshop/03_updating_app.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@ To remove a container, you first need to stop it. Once it has stopped, you can r
7272
$ docker rm <the-container-id>
7373
```
7474

75-
>**Note**
75+
> [!NOTE]
7676
>
77-
>You can stop and remove a container in a single command by adding the `force` flag to the `docker rm` command. For example: `docker rm -f <the-container-id>`
77+
> You can stop and remove a container in a single command by adding the `force` flag to the `docker rm` command. For example: `docker rm -f <the-container-id>`
7878
7979
{{< /tab >}}
8080
{{< tab name="Docker Desktop" >}}

content/get-started/workshop/08_using_compose.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -268,12 +268,12 @@ quickly see what container is your app and which container is the mysql database
268268
When you're ready to tear it all down, simply run `docker compose down` or hit the trash can on the Docker Desktop Dashboard
269269
for the entire app. The containers will stop and the network will be removed.
270270

271-
>**Warning**
271+
> [!WARNING]
272272
>
273-
>By default, named volumes in your compose file are not removed when you run `docker compose down`. If you want to
273+
> By default, named volumes in your compose file are not removed when you run `docker compose down`. If you want to
274274
>remove the volumes, you need to add the `--volumes` flag.
275275
>
276-
>The Docker Desktop Dashboard does not remove volumes when you delete the app stack.
276+
> The Docker Desktop Dashboard does not remove volumes when you delete the app stack.
277277

278278
## Summary
279279

content/includes/aci-ecs-eol.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
>**Important**
1+
> [!IMPORTANT]
22
>
3-
>Docker Compose's integration for ECS and ACI is retiring in November 2023.
3+
> Docker Compose's integration for ECS and ACI is retiring in November 2023.

content/includes/install-script.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ of the convenience script:
3030
using the script to update an existing installation, dependencies may not be
3131
updated to the expected version, resulting in outdated versions.
3232

33-
> **Tip: preview script steps before running**
33+
> [!TIP]
3434
>
35-
> You can run the script with the `--dry-run` option to learn what steps the
35+
> Preview script steps before running. You can run the script with the `--dry-run` option to learn what steps the
3636
> script will run when invoked:
3737
>
3838
> ```console

content/manuals/build/bake/contexts.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,14 +93,14 @@ multiple Dockerfiles that can't be easily merged into one.
9393

9494
## Deduplicate context transfer
9595

96-
> **Note**
96+
> [!NOTE]
9797
>
98-
> As of Buildx version 0.17.0 and later, Bake automatically deduplicates
98+
> As of Buildx version 0.17.0 and later, Bake automatically de-duplicates
9999
> context transfer for targets that share the same context. In addition to
100100
> Buildx version 0.17.0, the builder must be running BuildKit version 0.16.0 or
101101
> later, and the Dockerfile syntax must be `docker/dockerfile:1.10` or later.
102102
>
103-
> If you meet these requirements, you don't need to manually deduplicate
103+
> If you meet these requirements, you don't need to manually de-duplicate
104104
> context transfer as described in this section.
105105
>
106106
> - To check your Buildx version, run `docker buildx version`.

content/manuals/compose/intro/compose-application-model.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ Computing components of an application are defined as [services](/reference/comp
1919

2020
Services communicate with each other through [networks](/reference/compose-file/networks.md). In the Compose Specification, a network is a platform capability abstraction to establish an IP route between containers within services connected together.
2121

22-
Services store and share persistent data into [volumes](/reference/compose-file/volumes.md). The Specification describes such a persistent data as a high-level filesystem mount with global options.
22+
Services store and share persistent data into [volumes](/reference/compose-file/volumes.md). The Specification describes such a persistent data as a high-level filesystem mount with global options.
2323

2424
Some services require configuration data that is dependent on the runtime or platform. For this, the Specification defines a dedicated [configs](/reference/compose-file/configs.md) concept. From a service container point of view, configs are comparable to volumes, in that they are files mounted into the container. But the actual definition involves distinct platform resources and services, which are abstracted by this type.
2525

2626
A [secret](/reference/compose-file/secrets.md) is a specific flavor of configuration data for sensitive data that should not be exposed without security considerations. Secrets are made available to services as files mounted into their containers, but the platform-specific resources to provide sensitive data are specific enough to deserve a distinct concept and definition within the Compose specification.
2727

28-
>**Note**
28+
> [!NOTE]
2929
>
3030
> With volumes, configs and secrets you can have a simple declaration at the top-level and then add more platform-specific information at the service level.
3131

content/manuals/compose/releases/release-notes.md

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1004,9 +1004,9 @@ For the full change log or additional information, check the [Compose repository
10041004

10051005
{{< release-date date="2022-09-27" >}}
10061006

1007-
> [!NOTE]
1008-
>
1009-
> - Updates on environment file syntax & interpolation: see [compose#9879](https://github.com/docker/compose/issues/9879)
1007+
> [!NOTE]
1008+
>
1009+
> - Updates on environment file syntax & interpolation: see [compose#9879](https://github.com/docker/compose/issues/9879)
10101010
> - Setting `DOCKER_HOST` via `.env` files is not supported in Compose v2
10111011
10121012
### Updates
@@ -1145,10 +1145,9 @@ For the full change log, check the [Compose repository 2.10.0 release page](http
11451145
> [!IMPORTANT]
11461146
>
11471147
> Compose v2.9.0 contains changes to the environment variable's precedence that have since been reverted. We recommend using v2.10+ to avoid compatibility issues.
1148-
>
11491148
11501149
> [!NOTE]
1151-
>
1150+
>
11521151
> This release reverts the breaking changes introduced in [Compose v2.8.0](#280) by [`compose-go v1.3.0`](https://github.com/compose-spec/compose-go/releases/tag/v1.3.0).
11531152
11541153
### Updates
@@ -1976,8 +1975,9 @@ This release contains minor improvements and bug fixes.
19761975

19771976
- Reverted a 1.23.0 change that appended random strings to container names
19781977
created by `docker-compose up`, causing addressability issues.
1979-
> [!NOTE]: Containers created by `docker-compose run` will continue to use
1980-
randomly generated names to avoid collisions during parallel runs.
1978+
> [!NOTE]
1979+
>
1980+
> Containers created by `docker-compose run` will continue to use randomly generated names to avoid collisions during parallel runs.
19811981
19821982
- Fixed an issue where some `dockerfile` paths would fail unexpectedly when
19831983
attempting to build on Windows.
@@ -2981,7 +2981,10 @@ naming scheme accordingly before upgrading.
29812981
- Containers dependencies can now be set up to wait on positive healthchecks
29822982
when declared using `depends_on`. See the documentation for the updated
29832983
syntax.
2984-
**Note**: This feature will not be ported to version 3 Compose files.
2984+
2985+
> [!NOTE]
2986+
>
2987+
> This feature will not be ported to version 3 Compose files.
29852988
29862989
- Added support for the `sysctls` parameter in service definitions
29872990

content/manuals/desktop/previous-versions/edge-releases-mac.md

Lines changed: 21 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1450,7 +1450,9 @@ TCP connection is idle for more than five minutes (related to
14501450

14511451
### Beta 36 Release Notes (2017-01-12 1.13.0-rc6-beta36)
14521452

1453-
>**Important Note:** Plugins installed using the experimental "managed plugins" feature in Docker 1.12 must be removed/uninstalled before upgrading.
1453+
> [!IMPORTANT]
1454+
>
1455+
> Plugins installed using the experimental "managed plugins" feature in Docker 1.12 must be removed/uninstalled before upgrading.
14541456
14551457
**Upgrades**
14561458

@@ -1464,7 +1466,9 @@ TCP connection is idle for more than five minutes (related to
14641466

14651467
### Beta 35 Release Notes (2017-01-06 1.13.0-rc5-beta35)
14661468

1467-
>**Important Note:** Plugins installed using the experimental "managed plugins" feature in Docker 1.12 must be removed/uninstalled before upgrading.
1469+
> [!IMPORTANT]
1470+
>
1471+
> Plugins installed using the experimental "managed plugins" feature in Docker 1.12 must be removed/uninstalled before upgrading.
14681472
14691473
**Upgrades**
14701474

@@ -1475,7 +1479,9 @@ TCP connection is idle for more than five minutes (related to
14751479

14761480
### Beta 34.1 Release Notes (2016-12-22 1.13.0-rc4-beta34.1)
14771481

1478-
>**Important Note:** Plugins installed using the experimental "managed plugins" feature in Docker 1.12 must be removed/uninstalled before upgrading.
1482+
> [!IMPORTANT]
1483+
>
1484+
> Plugins installed using the experimental "managed plugins" feature in Docker 1.12 must be removed/uninstalled before upgrading.
14791485
14801486
**Hotfix**
14811487

@@ -1487,7 +1493,9 @@ TCP connection is idle for more than five minutes (related to
14871493

14881494
### Beta 34 Release Notes (2016-12-20 1.13.0-rc4-beta34)
14891495

1490-
>**Important Note:** Plugins installed using the experimental "managed plugins" feature in Docker 1.12 must be removed/uninstalled before upgrading.
1496+
> [!IMPORTANT]
1497+
>
1498+
> Plugins installed using the experimental "managed plugins" feature in Docker 1.12 must be removed/uninstalled before upgrading.
14911499
14921500
**New**
14931501

@@ -1509,15 +1517,19 @@ TCP connection is idle for more than five minutes (related to
15091517

15101518
### Beta 33.1 Release Notes (2016-12-16 1.13.0-rc3-beta33.1)
15111519

1512-
>**Important Note:** Plugins installed using the experimental "managed plugins" feature in Docker 1.12 must be removed/uninstalled before upgrading.
1520+
> [!IMPORTANT]
1521+
>
1522+
> Plugins installed using the experimental "managed plugins" feature in Docker 1.12 must be removed/uninstalled before upgrading.
15131523
15141524
**Hotfix**
15151525

15161526
- Fixed issue where sometimes TRIM would cause the virtual machine to hang
15171527

15181528
### Beta 33 Release Notes (2016-12-15 1.13.0-rc3-beta33)
15191529

1520-
>**Important Note:** Plugins installed using the experimental "managed plugins" feature in Docker 1.12 must be removed/uninstalled before upgrading.
1530+
> [!IMPORTANT]
1531+
>
1532+
> Plugins installed using the experimental "managed plugins" feature in Docker 1.12 must be removed/uninstalled before upgrading.
15211533
15221534
**New**
15231535

@@ -1926,7 +1938,9 @@ events or unexpected unmounts.
19261938

19271939
### Beta 18.1 Release Notes (2016-07-07 1.12.0-rc3-beta18.1)
19281940

1929-
>**Note**: Docker 1.12.0 RC3 release introduces a backward incompatible change from RC2. You can fix this by recreating or updating your containers.
1941+
> [!NOTE]
1942+
>
1943+
> Docker 1.12.0 RC3 release introduces a backward incompatible change from RC2. You can fix this by recreating or updating your containers.
19301944
19311945
**Hotfix**
19321946

content/manuals/desktop/previous-versions/edge-releases-windows.md

Lines changed: 24 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1276,9 +1276,10 @@ This release contains a Kubernetes upgrade. Note that your local Kubernetes clus
12761276
TCP connection is idle for more than 5 minutes (related to
12771277
[docker/for-mac#1374](https://github.com/docker/for-mac/issues/1374))
12781278

1279-
> [!NOTE]: The link above goes to Docker for Mac issues because a
1280-
Mac user reported this problem, which applied to both Mac and Windows
1281-
and was fixed on both.
1279+
> [!NOTE]
1280+
>
1281+
> The link above goes to Docker for Mac issues because a
1282+
Mac user reported this problem, which applied to both Mac and Windows and was fixed on both.
12821283

12831284
### Docker Community Edition 17.07.0-rc3-win23 Release Notes (2017-08-21 17.07.0-win23)
12841285

@@ -1626,7 +1627,9 @@ registry access (fixes [docker/for-win#569](https://github.com/docker/for-win/is
16261627

16271628
### Beta 36 Release Notes (2017-01-12 1.13.0-rc6-beta36)
16281629

1629-
>**Important Note:** Plugins installed using the experimental "managed plugins" feature in Docker 1.12 must be removed/uninstalled before upgrading.
1630+
> [!IMPORTANT]
1631+
>
1632+
> Plugins installed using the experimental "managed plugins" feature in Docker 1.12 must be removed/uninstalled before upgrading.
16301633
16311634
**Upgrades**
16321635

@@ -1640,7 +1643,9 @@ registry access (fixes [docker/for-win#569](https://github.com/docker/for-win/is
16401643

16411644
### Beta 35 Release Notes (2017-01-06 1.13.0-rc5-beta35)
16421645

1643-
>**Important Note:** Plugins installed using the experimental "managed plugins" feature in Docker 1.12 must be removed/uninstalled before upgrading.
1646+
> [!IMPORTANT]
1647+
>
1648+
> Plugins installed using the experimental "managed plugins" feature in Docker 1.12 must be removed/uninstalled before upgrading.
16441649
16451650
**Upgrades**
16461651

@@ -1669,7 +1674,9 @@ registry access (fixes [docker/for-win#569](https://github.com/docker/for-win/is
16691674

16701675
### Beta 33 Release Notes (2016-12-15 1.13.0-rc3-beta33)
16711676

1672-
>**Important Note:** Plugins installed using the experimental "managed plugins" feature in Docker 1.12 must be removed/uninstalled before upgrading.
1677+
> [!IMPORTANT]
1678+
>
1679+
> Plugins installed using the experimental "managed plugins" feature in Docker 1.12 must be removed/uninstalled before upgrading.
16731680
16741681
**New**
16751682

@@ -1686,7 +1693,9 @@ registry access (fixes [docker/for-win#569](https://github.com/docker/for-win/is
16861693

16871694
### Beta 32.1 Release Notes (2016-12-09 1.13.0-rc3-beta32.1)
16881695

1689-
>**Important Note:** Plugins installed using the experimental "managed plugins" feature in Docker 1.12 must be removed/uninstalled before upgrading.
1696+
> [!IMPORTANT]
1697+
>
1698+
> Plugins installed using the experimental "managed plugins" feature in Docker 1.12 must be removed/uninstalled before upgrading.
16901699
16911700
**Hotfixes**
16921701

@@ -1716,9 +1725,9 @@ registry access (fixes [docker/for-win#569](https://github.com/docker/for-win/is
17161725

17171726
### Beta 32 Release Notes (2016-12-07 1.13.0-rc3-beta32)
17181727

1719-
>**Important Note**:
1728+
> [!IMPORTANT]
17201729
>
1721-
> Plugins installed using the experimental "managed plugins" feature in Docker 1.12 must be removed/uninstalled before upgrading.
1730+
> Plugins installed using the experimental "managed plugins" feature in Docker 1.12 must be removed/uninstalled before upgrading.
17221731
17231732
**New**
17241733

@@ -2070,7 +2079,9 @@ Unreleased. See Beta 23 for changes.
20702079

20712080
### Beta 18.1 Release (2016-07-07 1.12.0-rc3-beta18.1)
20722081

2073-
>**Note**: Docker 1.12.0 RC3 release introduces a backward incompatible change from RC2. You can fix this by recreating or updating your containers.
2082+
> [!NOTE]
2083+
>
2084+
> Docker 1.12.0 RC3 release introduces a backward incompatible change from RC2. You can fix this by recreating or updating your containers.
20742085
20752086
**Hotfix**
20762087

@@ -2493,7 +2504,9 @@ are working on a solution.
24932504
* Fix msi version
24942505
* Don't truncate Toolbox link
24952506

2496-
>**Note**: Docker for Windows skipped from Beta 1 to Beta 5 at this point to synch up the version numbering with Docker for Mac, which went into beta cycles a little earlier.
2507+
> [!NOTE]
2508+
>
2509+
> Docker for Windows skipped from Beta 1 to Beta 5 at this point to synch up the version numbering with Docker for Mac, which went into beta cycles a little earlier.
24972510
24982511
### Beta 1 Release (2016-03-24 1.10.6)
24992512

0 commit comments

Comments
 (0)