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/manuals/compose/how-tos/environment-variables/envvars.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -67,7 +67,7 @@ See also the [command-line options overview](/reference/cli/docker/compose/_inde
67
67
68
68
Specifies the path to a Compose file. Specifying multiple Compose files is supported.
69
69
70
-
- Default behavior: If not provided, Compose looks for a file named `compose.yaml`or `docker-compose.yaml`in the current directory and, if not found, then Compose searches each parent directory recursively until a file by that name is found.
70
+
- Default behavior: If not provided, Compose looks for a file named `compose.yaml` in the current directory and, if not found, then Compose searches each parent directory recursively until a file by that name is found.
71
71
- When specifying multiple Compose files, the path separators are, by default, on:
72
72
- Mac and Linux: `:` (colon)
73
73
- Windows: `;` (semicolon)
@@ -89,7 +89,7 @@ Services with matching profiles are started as well as any services for which no
89
89
For example, calling `docker compose up`with `COMPOSE_PROFILES=frontend` selects services with the
90
90
`frontend` profile as well as any services without a profile specified.
91
91
92
-
If specifying multiple profiles, use a comma as separator.
92
+
If specifying multiple profiles, use a comma as a separator.
93
93
94
94
This following example enables all services matching both the `frontend` and `debug` profiles and services without a profile.
95
95
@@ -127,11 +127,11 @@ When enabled, Compose doesn't try to detect orphaned containers for the project.
127
127
128
128
### COMPOSE\_REMOVE\_ORPHANS
129
129
130
-
When enabled, Compose automatically removes orphaned containers when updating a service or stack. Orphaned containers are those that were created by a previous configuration but are no longer defined in the current `compose.yml` file.
130
+
When enabled, Compose automatically removes orphaned containers when updating a service or stack. Orphaned containers are those that were created by a previous configuration but are no longer defined in the current `compose.yaml` file.
131
131
132
132
- Supported values:
133
133
-`true` or `1`, to enable automatic removal of orphaned containers
134
-
-`false` or `0`, to disable automatic removal. Compose displays a warning about orphaned containers instead
134
+
-`false` or `0`, to disable automatic removal. Compose displays a warning about orphaned containers instead.
0 commit comments