mirror of
https://github.com/addnab/docker-run-action.git
synced 2024-12-27 12:21:03 +08:00
57 lines
1.3 KiB
Markdown
57 lines
1.3 KiB
Markdown
# Docker Run Action
|
|
|
|
- run a specific step in docker.
|
|
- run an image built by a previous step.
|
|
- See https://github.com/addnab/docker-run-action/blob/main/action.yml for all the available inputs.
|
|
|
|
#### Typical Use Case
|
|
|
|
```yaml
|
|
- uses: addnab/docker-run-action@v2
|
|
with:
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
registry: gcr.io
|
|
image: private-image:latest
|
|
options: -v ${{ github.workspace }}:/work -e ABC=123
|
|
run: |
|
|
echo "Running Script"
|
|
/work/run-script
|
|
```
|
|
|
|
#### run a privately-owned image
|
|
```yaml
|
|
- uses: addnab/docker-run-action@v2
|
|
with:
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
registry: gcr.io
|
|
image: test-image:latest
|
|
run: echo "hello world"
|
|
```
|
|
|
|
#### run an image built by a previous step
|
|
```yaml
|
|
- uses: docker/build-push-action@v1
|
|
with:
|
|
repository: test-image
|
|
push: false
|
|
- uses: addnab/docker-run-action@v2
|
|
with:
|
|
image: test-image:latest
|
|
run: echo "hello world"
|
|
```
|
|
|
|
|
|
#### use a specific shell (default: sh).
|
|
*Note: The shell must be installed in the container*
|
|
```yaml
|
|
- uses: addnab/docker-run-action@v2
|
|
with:
|
|
image: docker:latest
|
|
shell: bash
|
|
run: |
|
|
echo "first line"
|
|
echo "second line"
|
|
```
|