Cache Docker Images Whether Built or Pulled
Cache Docker images whether built or pulled by saving them on cache misses and loading them on cache hits. Filter out Docker images that are present before the action is run, notably those pre-cached by GitHub actions; only save Docker images pulled or built in the same job after the action is run. Note that this action does not perform Docker layer caching. The official Docker build push action performs Docker layer caching for built images but does not cache pulled images.
-
Add the following step before your first use of Docker:
- name: Cache Docker images. uses: ScribeMD/docker-cache@0.2.6 with: key: docker-${{ runner.os }}-${{ hashFiles(...) }}
The explicit cache key to ferry to the
official GitHub cache action.
restore-keys
are not supported, because partial cache restoration leads to a
"snowball" effect.
default: false
If "true"
, disable saving cache upon cache miss.
The ferried output of the
official GitHub cache action.
True on cache hit (even if the subsequent
docker load
failed) and false on cache miss. See also
skipping steps based on cache-hit.
Please refer to
README.md
of ScribeMD/rootless-docker.
No permissions are required.
Please refer to CHANGELOG.md
.