You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/get-started/docker-concepts/the-basics/what-is-a-registry.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,7 +52,7 @@ The following diagram shows the relationship between a registry, repositories, a
52
52
+---------------------------------------+
53
53
```
54
54
55
-
>**Note**
55
+
>[!NOTE]
56
56
>
57
57
> 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/).
58
58
@@ -112,7 +112,7 @@ Don't worry about the specifics of the Dockerfile, as you'll learn about that in
Copy file name to clipboardExpand all lines: content/get-started/workshop/03_updating_app.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -72,9 +72,9 @@ To remove a container, you first need to stop it. Once it has stopped, you can r
72
72
$ docker rm <the-container-id>
73
73
```
74
74
75
-
>**Note**
75
+
>[!NOTE]
76
76
>
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>`
Copy file name to clipboardExpand all lines: content/manuals/compose/intro/compose-application-model.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,13 +19,13 @@ Computing components of an application are defined as [services](/reference/comp
19
19
20
20
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.
21
21
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.
23
23
24
24
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.
25
25
26
26
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.
27
27
28
-
>**Note**
28
+
>[!NOTE]
29
29
>
30
30
> 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.
Copy file name to clipboardExpand all lines: content/manuals/compose/releases/release-notes.md
+11-8Lines changed: 11 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1004,9 +1004,9 @@ For the full change log or additional information, check the [Compose repository
1004
1004
1005
1005
{{< release-date date="2022-09-27" >}}
1006
1006
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)
1010
1010
> - Setting `DOCKER_HOST` via `.env` files is not supported in Compose v2
1011
1011
1012
1012
### Updates
@@ -1145,10 +1145,9 @@ For the full change log, check the [Compose repository 2.10.0 release page](http
1145
1145
> [!IMPORTANT]
1146
1146
>
1147
1147
> 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
-
>
1149
1148
1150
1149
> [!NOTE]
1151
-
>
1150
+
>
1152
1151
> 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).
1153
1152
1154
1153
### Updates
@@ -1976,8 +1975,9 @@ This release contains minor improvements and bug fixes.
1976
1975
1977
1976
- Reverted a 1.23.0 change that appended random strings to container names
1978
1977
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.
1981
1981
1982
1982
- Fixed an issue where some `dockerfile` paths would fail unexpectedly when
1983
1983
attempting to build on Windows.
@@ -2981,7 +2981,10 @@ naming scheme accordingly before upgrading.
2981
2981
- Containers dependencies can now be set up to wait on positive healthchecks
2982
2982
when declared using `depends_on`. See the documentation for the updated
2983
2983
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.
2985
2988
2986
2989
- Added support for the `sysctls` parameter in service definitions
0 commit comments