NEW
Font size
WorksheetsDocker Assessment 2
Total questions: 10
Worksheet time: 6mins
A docker registry is a place to store and distribute Docker?
Codes
Images
Files
all of the above
Docker Image is OS dependent
True
False
You can't create multiple containers from the same image in docker
TRUE
FALSE
Docker Machine manage virtual hosts that use ------------------------
Command line
Docker Datacenter
Graphical user interface
None of the above
What is a Dockerfile?
A developer who loves Docker and containerization, frequently espousing its virtues
Any folder or document to run Docker components
A template used to describe the build of an image
Any report or document that Docker components produce
What is Docker image?
read-only template
Docker platform
language
None of the above
Which one of the following is not an important advanced docker command?
docker info
docker pull
docker stats
None of the above
Which programming language was used to write Docker?
Java
C
C++
GO
Which Dockerfile instruction indicates what base image to use?
ENTRYPOINT
BASE
FROM
USING
What syntax can be used to convert a Dockerfile into an Image?
docker create -t <image_name>:<tag_name> .
docker build -t <image_name>:<tag_name> .
docker run -t <image_name>:<tag_name> .
docker convert -t <image_name>:<tag_name> .
