GitHub Action to set up Docker Compose
Find a file
CrazyMax e79596b1b4
Some checks failed
ci / main () (push) Has been cancelled
ci / main (cloud:latest) (push) Has been cancelled
ci / main (cloud:v2.29.1-desktop.2) (push) Has been cancelled
ci / main (latest) (push) Has been cancelled
ci / main (v2.32.4) (push) Has been cancelled
ci / multi (push) Has been cancelled
ci / standalone (push) Has been cancelled
ci / cache-binary (false) (push) Has been cancelled
ci / cache-binary (true) (push) Has been cancelled
test / test (push) Has been cancelled
validate / prepare (push) Has been cancelled
validate / validate (push) Has been cancelled
Merge pull request #44 from docker/dependabot/npm_and_yarn/undici-5.29.0
chore(deps): bump undici from 5.28.4 to 5.29.0
2026-01-29 17:11:08 +01:00
.github ci: rename job in update-dist workflow 2026-01-29 16:36:38 +01:00
__tests__ initial version 2025-01-20 13:05:32 +01:00
dist chore: update generated content 2026-01-29 16:05:18 +00:00
src initial version 2025-01-20 13:05:32 +01:00
.dockerignore initial version 2025-01-20 13:05:32 +01:00
.editorconfig initial version 2025-01-20 13:05:32 +01:00
.gitattributes initial version 2025-01-20 13:05:32 +01:00
.gitignore initial version 2025-01-20 13:05:32 +01:00
.prettierignore initial version 2025-01-20 13:05:32 +01:00
.prettierrc.json initial version 2025-01-20 13:05:32 +01:00
.yarnrc.yml update yarn to 4.9.2 2026-01-29 16:42:03 +01:00
action.yml initial version 2025-01-20 13:05:32 +01:00
codecov.yml initial version 2025-01-20 13:05:32 +01:00
dev.Dockerfile initial version 2025-01-20 13:05:32 +01:00
docker-bake.hcl initial version 2025-01-20 13:05:32 +01:00
eslint.config.js migrate eslint config to new format required since 9.0.0 2026-01-29 16:34:21 +01:00
jest.config.js update jest config since 30.0 2026-01-29 16:35:17 +01:00
LICENSE chore: license 2025-01-20 12:13:06 +01:00
package.json update yarn to 4.9.2 2026-01-29 16:42:03 +01:00
README.md docs to download latest version 2025-01-27 12:40:56 +01:00
tsconfig.json initial version 2025-01-20 13:05:32 +01:00
yarn.lock chore(deps): bump undici from 5.28.4 to 5.29.0 2026-01-29 16:04:13 +00:00

GitHub release GitHub marketplace CI workflow Test workflow Codecov

About

GitHub Action to set up Docker Compose.

Screenshot


Usage

name: ci

on:
  push:

jobs:
  compose:
    runs-on: ubuntu-latest
    steps:
      -
        name: Set up Docker Compose
        uses: docker/setup-compose-action@v1

Note

If Docker Compose is already installed on the runner, the action will skip download. Otherwise, it will download and install the latest stable version available on GitHub.

To always download and install the latest version of Docker Compose:

      -
        name: Set up Docker Compose
        uses: docker/setup-compose-action@v1
        with:
          version: latest

Customizing

inputs

The following inputs can be used as step.with keys:

Name Type Default Description
version String Compose version. (eg. v2.32.4, latest)
cache-binary Bool true Cache compose binary to GitHub Actions cache backend

Contributing

Want to contribute? Awesome! You can find information about contributing to this project in the CONTRIBUTING.md