Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 549 Bytes

README.md

File metadata and controls

31 lines (21 loc) · 549 Bytes

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