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-support.md
+14-6Lines changed: 14 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,6 +23,19 @@ services:
23
23
24
24
```
25
25
26
+
## Compose Top-level Properties
27
+
Here are a list of top-level properties of the [Compose specification](https://docs.docker.com/compose/compose-file/) that Defang supports when writing a `compose.yaml` file.
28
+
29
+
### `version`
30
+
(Deprecated)
31
+
32
+
The version of the Compose file format being used. This feature is no longer supported and will be ignored by Defang.
33
+
34
+
### `volumes`
35
+
(Unsupported)
36
+
37
+
The volume mounts for a container, reusable across services. This feature is not currently supported by Defang.
38
+
26
39
## Compose Service Properties
27
40
Here are a list of service-level properties of the [Compose specification](https://docs.docker.com/compose/compose-file/) that Defang supports when writing a `compose.yaml` file.
28
41
@@ -121,15 +134,10 @@ The restart mode for a container. Defaults to `unless-stopped` unless otherwise
121
134
restart: unless-stopped
122
135
```
123
136
124
-
### `version`
125
-
(Deprecated)
126
-
127
-
The version of the Compose file format being used. This feature is no longer supported and will be ignored by Defang.
128
-
129
137
### `volumes`
130
138
(Unsupported)
131
139
132
-
The volume for a container. This feature is not currently supported by Defang.
140
+
The volume mounts for a container, specific to a service. This feature is not currently supported by Defang.
0 commit comments