Complete the command to log in to Docker Hub.
docker [1]The docker login command lets you sign in to Docker Hub to push or pull images.
Complete the command to push a Docker image named 'myapp' to Docker Hub under user 'alice'.
docker push alice/[1]You push the image by specifying your Docker Hub username and the image name, like alice/myapp.
Fix the error in the command to tag a local image 'app' for Docker Hub user 'bob' with tag 'v1'.
docker tag app [1]/app:v1The tag must include your Docker Hub username before the image name, so 'bob/app:v1' is correct.
Fill both blanks to pull the image 'nginx' with tag 'stable' from Docker Hub.
docker [1] nginx:[2]
The command to download an image is docker pull, and the tag specifies the version, here 'stable'.
Fill all three blanks to build a Docker image from 'Dockerfile' and tag it for user 'carol' with name 'webapp' and tag 'v2'.
docker build -t [1]/[2]:[3] .
The build command tags the image with your Docker Hub username, image name, and version tag.