39 lines
591 B
Markdown
39 lines
591 B
Markdown
# Starter Docker - GitHub Actions
|
|
|
|
- Run actions with docker (latest version)
|
|
- Quick and easy to use
|
|
- Support custom registry
|
|
- Support custom shell and commands
|
|
|
|
# Usage
|
|
|
|
```yaml
|
|
- name: Starter Docker
|
|
uses: CUBETIQ/starter-docker-actions@v0.9
|
|
```
|
|
|
|
# Example Action
|
|
|
|
```yaml
|
|
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Starter Docker Test
|
|
uses: cubetiq/starter-docker-actions@v0.9
|
|
with:
|
|
shell: bash
|
|
run: docker version
|
|
```
|
|
|
|
# Contributors
|
|
|
|
- Sambo Chea <sombochea@cubetiqs.com>
|