Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/austenstone/action-docker
Create a Docker Action
https://github.com/austenstone/action-docker
actions docker template
Last synced: 28 days ago
JSON representation
Create a Docker Action
- Host: GitHub
- URL: https://github.com/austenstone/action-docker
- Owner: austenstone
- Created: 2022-03-14T23:12:04.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-08-14T19:06:03.000Z (over 1 year ago)
- Last Synced: 2024-11-01T06:26:35.959Z (3 months ago)
- Topics: actions, docker, template
- Language: Dockerfile
- Homepage: https://github.com/features/actions
- Size: 11.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Docker Action Template
This repository serves as a [template](https://docs.github.com/en/repositories/creating-and-managing-repositories/creating-a-repository-from-a-template) for Docker [Actions](https://docs.github.com/en/actions).
## 🏃 Usage
Create a workflow (eg: `.github/workflows/seat-count.yml`). See [Creating a Workflow file](https://help.github.com/en/articles/configuring-a-workflow#creating-a-workflow-file).### Default Workflow
```yml
name: Docker Action Workflow
on:
workflow_dispatch:jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: austenstone/action-docker@main
```## ➡️ Input Settings
Various inputs are defined in [`action.yml`](action.yml):| Name | Description | Default |
| --- | - | - |
| github‑token | Token to use to authorize. | ${{ github.token }} |## Further help
To get more help on the Actions see [documentation](https://docs.github.com/en/actions).