https://github.com/ndeloof/install-compose-action
  
  
    GitHub Action to install Docker Compose v2 
    https://github.com/ndeloof/install-compose-action
  
        Last synced: 7 months 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 (almost 4 years ago)
 - Default Branch: main
 - Last Pushed: 2023-03-22T14:32:10.000Z (over 2 years ago)
 - Last Synced: 2025-02-22T11:03:19.374Z (9 months ago)
 - Size: 5.86 KB
 - Stars: 14
 - 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/install-compose-action@v0.0.1
        with:
          version: v2.1.0 # defaults to 'latest'
          legacy: true    # will also install in PATH as `docker-compose`
      - run: docker-compose --version
```