Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/docker-practice/actions-setup-docker

Set up your GitHub Actions workflow with a specific version(18.09,19.03,20.10,nightly) of Docker ON Linux/macOS
https://github.com/docker-practice/actions-setup-docker

actions

Last synced: 2 days ago
JSON representation

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

Awesome Lists containing this project

README

        

# setup-docker

Support **Linux** and **macOS**

**Example please see**

* [ci.yaml](https://github.com/docker-practice/actions-setup-docker/blob/master/.github/workflows/ci.yaml)

* [action.yml](https://github.com/docker-practice/actions-setup-docker/blob/master/action.yml)

**Quick Start**

```yaml
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
```