Complete the code to specify the image with the official Docker Hub registry.
docker pull [1]/ubuntu:latestThe official Docker Hub registry is referenced as docker.io. This prefix is optional but correct.
Complete the code to tag an image with a specific version.
docker tag myapp [1]/myrepo/myapp:1.0
When specifying a registry with a custom port, include the port after a colon, like myregistry.com:5000.
Fix the error in the image name to correctly specify the tag.
docker pull alpine[1]latestThe tag is separated from the image name by a colon :, not a slash or dash.
Fill both blanks to create a valid image name with registry and tag.
docker push [1]/[2]:stable
The registry is registry.example.com and the image name is appimage. The tag stable is after the colon.
Fill all three blanks to create a full image name with registry, repository, and tag.
docker pull [1]/[2]/[3]:v2
The full image name includes the registry registry.io, the repository library, and the image nginx. The tag v2 specifies the version.