Closed williams-jack closed 2 months ago
It is possible for Docker to load in a .tgz from a different host machine with the Repository <hostname>/<image-group-name>.
.tgz
<hostname>/<image-group-name>
To remedy this, instead of assuming the name for the container will always be grader-<sha>, we now turn to:
grader-<sha>
docker image ls
docker load -i <tgz-file>
docker load
Feature/Problem Description
It is possible for Docker to load in a
.tgz
from a different host machine with the Repository<hostname>/<image-group-name>
.To remedy this, instead of assuming the name for the container will always be
grader-<sha>
, we now turn to:docker image ls
output (where an image name contains the SHA) ordocker load -i <tgz-file>
command, which when successful will output the name of the image saved to the local registry.Solution (Changes Made)
docker load
output.