Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/docker-practice/actions-setup-docker
- Owner: docker-practice
- Created: 2019-09-05T02:44:00.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-11-24T12:07:47.000Z (about 1 month ago)
- Last Synced: 2024-12-16T03:43:44.948Z (15 days ago)
- Topics: actions
- Language: JavaScript
- Homepage:
- Size: 720 KB
- Stars: 95
- Watchers: 3
- Forks: 35
- Open Issues: 14
-
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:
pushname: ci
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: docker-practice/actions-setup-docker@master
timeout-minutes: 12
- run: |
set -xdocker version
docker run --rm hello-world
```