Evgenus / docker-image-artifact-download

Github action for downloading docker image artifact

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Docker Image Artifact Download

Github action for downloading a docker image artifact. It downloads image artifact uploaded by docker-image-artifact-upload and loads into local docker daemon for use in a job.

Inputs

image

Required Image name that is to be downloaded.

Outputs

download_path

Path in node where docker image archive is downloaded. Eg. /tmp/foo_latest for image foo:latest.

Example usage

...
jobs:
  download_image:
    - name: Checkout project
      uses: actions/checkout@v2

    - name: Upload image
      uses: ishworkh/docker-image-artifact-download@v1
      with:
        image: "test_image:latest"

License

This library is under the MIT license.

About

Github action for downloading docker image artifact

License:MIT License


Languages

Language:JavaScript 100.0%