No description
This repository has been archived on 2024-09-20. You can view files and clone it, but cannot push or open issues or pull requests.
Find a file
Yossi Farjoun b9fe748ee2 parent 358af5c600
author Yossi Farjoun <farjoun@broadinstitute.org> 1617479686 -0400
committer Yossi Farjoun <farjoun@broadinstitute.org> 1618455120 -0400

Change the way the script is run. instead of modfying the ENTRYPOINT, we will simply add the "shell" (default sh) and the "script_prefix" (default -c)
and then the script.

That way the possible comple entry point is not disturbed. if a user would like to remove the ENTRYPOINT they can provide an "option" "--entrypoint ''" for example.
2021-04-14 23:06:04 -04:00
.github/workflows parent 358af5c600 2021-04-14 23:06:04 -04:00
.gitignore setup docker run action 2020-06-17 18:47:31 -04:00
action.yml parent 358af5c600 2021-04-14 23:06:04 -04:00
Dockerfile Upgrade to more recent image of Docker 2021-03-16 10:40:17 -04:00
entrypoint.sh parent 358af5c600 2021-04-14 23:06:04 -04:00
LICENSE Initial commit 2020-06-17 17:53:48 -04:00
README.md parent 358af5c600 2021-04-14 23:06:04 -04:00
RELEASES.md Update RELEASES.md 2021-03-17 13:00:15 -04:00

Docker Run Action

Examples

Typical Use Case

- uses: addnab/docker-run-action@v3
  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

- uses: addnab/docker-run-action@v3
  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

- uses: docker/build-push-action@v2
  with:
    tags: test-image:latest
    push: false
- uses: addnab/docker-run-action@v3
  with:
    image: test-image:latest
    run: echo "hello world"

use a specific shell (default: sh).

Note: The shell must be installed in the container

- uses: addnab/docker-run-action@v3
  with:
    image: docker:latest
    shell: bash
    run: |
      echo "first line"
      echo "second line"