Browse Source

fix: replace docker-compose.yml with compose.yaml

Signed-off-by: k-kbk <[email protected]>
k-kbk 8 months ago
parent
commit
e5a353b34d
1 changed files with 3 additions and 3 deletions
  1. 3 3
      docs/reference/docker_compose.yaml

+ 3 - 3
docs/reference/docker_compose.yaml

@@ -241,10 +241,10 @@ examples: |-
     For example, consider this command line:
 
     ```console
-    $ docker compose -f docker-compose.yml -f docker-compose.admin.yml run backup_db
+    $ docker compose -f compose.yaml -f compose.admin.yaml run backup_db
     ```
 
-    The `docker-compose.yml` file might specify a `webapp` service.
+    The `compose.yaml` file might specify a `webapp` service.
 
     ```yaml
     services:
@@ -255,7 +255,7 @@ examples: |-
         volumes:
           - "/data"
     ```
-    If the `docker-compose.admin.yml` also specifies this same service, any matching fields override the previous file.
+    If the `compose.admin.yaml` also specifies this same service, any matching fields override the previous file.
     New values, add to the `webapp` service configuration.
 
     ```yaml