07b07c8cd245295a366890e31bc23c2c79c70d93
Docker Run Action
This action targets a very specific use-case that is not currently supported by Github Workflows. This action gives you the capability to run built containers.
Docker already supports running commands inside a docker image. See jobs.<jobs_id>.container. But it doesn't give you a clean way to run an image from a private repo or an image built on a previous step.
Example Usage
Standard use-case
- uses: addnab/docker-run-action@v1
with:
image: docker:latest
run: echo "hello world"
Multiple commands
- uses: addnab/docker-run-action@v1
with:
image: docker:latest
run: |
echo "first line"
echo "second line"
Description
Languages
Shell
83.5%
Dockerfile
16.5%