mirror of
https://github.com/docker/setup-compose-action.git
synced 2025-12-16 01:21:17 +01:00
757dd6f61d097bbdbb395363173745a88cfbca62
Bumps [@docker/actions-toolkit](https://github.com/docker/actions-toolkit) from 0.54.0 to 0.56.0. - [Release notes](https://github.com/docker/actions-toolkit/releases) - [Commits](https://github.com/docker/actions-toolkit/compare/v0.54.0...v0.56.0) --- updated-dependencies: - dependency-name: "@docker/actions-toolkit" dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
About
GitHub Action to set up Docker Compose.
Usage
name: ci
on:
push:
jobs:
compose:
runs-on: ubuntu-latest
steps:
-
name: Set up Docker Compose
uses: docker/setup-compose-action@v1
Note
If Docker Compose is already installed on the runner, the action will skip download. Otherwise, it will download and install the latest stable version available on GitHub.
To always download and install the latest version of Docker Compose:
-
name: Set up Docker Compose
uses: docker/setup-compose-action@v1
with:
version: latest
Customizing
inputs
The following inputs can be used as step.with keys:
| Name | Type | Default | Description |
|---|---|---|---|
version |
String | Compose version. (eg. v2.32.4, latest) |
|
cache-binary |
Bool | true |
Cache compose binary to GitHub Actions cache backend |
Contributing
Want to contribute? Awesome! You can find information about contributing to this project in the CONTRIBUTING.md
Description
Languages
TypeScript
56.7%
Dockerfile
28.6%
HCL
14.7%
