Skip to content

Set up your GitHub Actions workflow with a specific version(18.09,19.03,20.10,nightly) of Docker ON Linux/macOS

Notifications You must be signed in to change notification settings

docker-practice/actions-setup-docker

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Nov 24, 2024
26fccec · Nov 24, 2024
Feb 10, 2024
Nov 23, 2024
Nov 23, 2024
Sep 5, 2019
Sep 26, 2020
Dec 27, 2022
Nov 24, 2024
Jun 15, 2021
Jan 9, 2021
Sep 5, 2019

Repository files navigation

setup-docker

Support Linux and macOS

Example please see

Quick Start

on:
  push

name: ci

jobs:
  ci:
    runs-on: ubuntu-latest
    steps:
    - uses: docker-practice/actions-setup-docker@master
      timeout-minutes: 12
    - run: |
        set -x

        docker version

        docker run --rm hello-world