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: docs/concepts/compose.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,9 @@ sidebar_position: 150
8
8
9
9
Defang allows you to use `compose.yaml` files to deploy your application to the cloud.
10
10
The `compose.yaml` file is a simple way to define and run multi-container applications.
11
-
This file format may look familiar to you if you've come across `docker-compose.yml` files, as both are based on the [Compose specification](https://docs.docker.com/compose/compose-file/).
11
+
This file format may look familiar to you if you've used [Docker](https://docker.com).
12
+
13
+
The [Compose Specification](https://github.com/compose-spec/compose-spec/blob/main/spec.md#compose-file) lets you define a platform-agnostic application designed as a set of containers which are configured to run together with shared resources. These applications may be destined for any [OCI](https://opencontainers.org/) Container Runtime. Defang does the heavy lifting to deploy to your favourite cloud platform using this file.
12
14
13
15
## How It Works
14
16
@@ -249,7 +251,7 @@ restart: unless-stopped
249
251
```
250
252
251
253
### `volumes`
252
-
(Unsupported)
254
+
(Not yet supported)
253
255
254
256
The volume mounts for a container, specific to a service. This feature is not currently supported by Defang.
0 commit comments