Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/withlogicco/setup-compose-cli

Set up Docker Cloud Integrations Compose CLI in GitHub Actions
https://github.com/withlogicco/setup-compose-cli

aws cli docker docker-compose ecs fargate github-actions

Last synced: 7 days ago
JSON representation

Set up Docker Cloud Integrations Compose CLI in GitHub Actions

Awesome Lists containing this project

README

        

# Set up Docker Compose CLI

GitHub Action making it straightforward to install the desired version of Docker Compose CLI.

## Usage

Add the following step in your workflow file

```yml
- uses: withlogicco/setup-compose-cli@v1
```

Now you can use the Docker Compose CLI to deploy your apps to Amazon ECS or Azure Container Instances:

```yml
- uses: withlogicco/setup-compose-cli@v1
- run: docker context create ecs aws --from-env
- run: docker --context=aws compose up
```
### Picking a different version

```yml
- uses: withlogicco/setup-compose-cli@v1
with:
version: 1.0.23
```

---

Built by [Paris Kasidiaris](https://twitter.com/pariskasid) and licensed under the [MIT License](./LICENSE).