We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 55fa65f + db9182e commit e7d6fbfCopy full SHA for e7d6fbf
README.md
@@ -30,11 +30,23 @@ jobs:
30
runs-on: ubuntu-latest
31
steps:
32
-
33
- name: Checkout
34
- uses: actions/checkout@v4
+ name: Set up Docker Compose
+ uses: docker/setup-compose-action@v1
35
+```
36
+
37
+> [!NOTE]
38
+> If Docker Compose is already installed on the runner, the action will skip
39
+> download. Otherwise, it will download and install the latest stable version
40
+> [available on GitHub](https://github.com/docker/compose/releases/latest).
41
42
+To always download and install the latest version of Docker Compose:
43
44
+```yaml
45
46
name: Set up Docker Compose
47
uses: docker/setup-compose-action@v1
48
+ with:
49
+ version: latest
50
```
51
52
## Customizing
0 commit comments