Complete the command to tag the Docker image as 'myapp:latest' during build.
docker build -t myapp[1] .The -t option tags the image. The tag is added after a colon : without spaces.
Complete the command to tag the image with a version number 'v1.0' during build.
docker build -t myapp[1] .The version tag is added after the image name with a colon and no spaces.
Fix the error in the command to tag the image as 'myapp:prod'.
docker build -t myapp[1] .The correct tag separator is a colon : with no spaces.
Complete the code to tag the image as 'myapp' with version '2.1' during build.
docker build -t myapp:[1] .The tag separator is a colon, followed by the version number without extra characters.
Fill both blanks to tag the 'myapp' image with version '3.0' to 'myrepo/myapp:3.0'.
docker tag myapp:[1] myrepo/myapp[2]
The tag separator is a colon before the version number in both source and target image names.