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: 9 months 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
- Host: GitHub
- URL: https://github.com/docker-practice/actions-setup-docker
- Owner: docker-practice
- Created: 2019-09-05T02:44:00.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2025-04-23T14:43:28.000Z (9 months ago)
- Last Synced: 2025-04-29T09:43:24.282Z (9 months ago)
- Topics: actions
- Language: JavaScript
- Homepage:
- Size: 683 KB
- Stars: 97
- Watchers: 2
- Forks: 37
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
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
```