compose-action/.github/ghadocs/examples/5_compose-flags.md
Emilien Escalle 59fb88b48c chore(docs): fix lint issues
Signed-off-by: Emilien Escalle <emilien.escalle@escemi.com>
2024-11-12 14:32:30 +01:00

19 lines
579 B
Markdown

<!-- markdownlint-disable-next-line first-line-heading -->
### Example using `compose-flags`
Specify flags to pass to the `docker-compose` command. Default is none. A full
list of flags can be found in the
[docker-compose documentation](https://docs.docker.com/compose/reference/#command-options-overview-and-help).
```yaml
steps:
# need checkout before using compose-action
- uses: actions/checkout@v3
- uses: hoverkraft-tech/compose-action@v1.5.1
with:
compose-file: "./docker/docker-compose.yml"
services: |
helloworld2
helloworld3
```