Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/withlogicco/setup-compose-cli
- Owner: withlogicco
- License: mit
- Created: 2021-06-09T22:13:01.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-05-24T14:51:24.000Z (over 2 years ago)
- Last Synced: 2024-10-31T10:48:49.709Z (17 days ago)
- Topics: aws, cli, docker, docker-compose, ecs, fargate, github-actions
- Homepage:
- Size: 6.84 KB
- Stars: 5
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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).