compose-action/README.md
github-actions[bot] 58c8fc28a1 docs: update actions and workflows documentation
[skip ci]

Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-03-26 14:19:13 +01:00

3.3 KiB

branding<icon:anchor color:gray-dark>

branding<icon:anchor color:gray-dark> GitHub Action: Docker Compose Action

Release%20by%20tagRelease%20by%20dateCommitOpen%20IssuesDownloads

Run your docker-compose file

- uses: /@v1.0.0
  with:
    # Description: Relative path to compose file(s). It can be a list of files.
    #
    # Default: ./docker-compose.yml
    compose-file: ""

    # Description: Services to perform docker-compose up.
    #
    services: ""

    # Description: Additional options to pass to `docker-compose up` command.
    #
    # Default:
    up-flags: ""

    # Description: Additional options to pass to `docker-compose down` command.
    #
    # Default:
    down-flags: ""

    # Description: Additional options to pass to `docker-compose` command.
    #
    # Default:
    compose-flags: ""
Input Description Default Required
compose-file Relative path to compose file(s). It can be a list of files. ./docker-compose.yml false
services Services to perform docker-compose up. false
up-flags Additional options to pass to docker-compose up command. false
down-flags Additional options to pass to docker-compose down command. false
compose-flags Additional options to pass to docker-compose command. false