Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ndeloof/install-compose-action
GitHub Action to install Docker Compose v2
https://github.com/ndeloof/install-compose-action
Last synced: about 1 month ago
JSON representation
GitHub Action to install Docker Compose v2
- Host: GitHub
- URL: https://github.com/ndeloof/install-compose-action
- Owner: ndeloof
- License: apache-2.0
- Created: 2021-11-24T17:07:44.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-22T14:32:10.000Z (almost 2 years ago)
- Last Synced: 2024-11-19T22:53:13.202Z (2 months ago)
- Size: 5.86 KB
- Stars: 13
- Watchers: 4
- Forks: 6
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Install Docker Compose
This GitHub Action installs Docker Compose v2
## Usage
```yaml
jobs:
my-awesome-job:
steps:
- name: Install Compose
uses: ndeloof/[email protected]
with:
version: v2.1.0 # defaults to 'latest'
legacy: true # will also install in PATH as `docker-compose`
- run: docker-compose --version
```