Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```