MultipleChoice
In the context of a swarm mode cluster, does this describe a node?
Solution: a virtual machine participating in the swarm
OptionsMultipleChoice
Will this command display a list of volumes for a specific container?
Solution: docker container logs nginx --volumes'
OptionsMultipleChoice
A container named 'analytics' that stores results in a volume called 'data' was created.
docker run -d --name=analytics -v data:/data app1
How are the results accessed in 'data' with another container called 'app2'?
OptionsMultipleChoice
Which of the following constitutes a production-ready devicemapper configuration for the Docker engine?
OptionsMultipleChoice
Which of the following commands wifi automatically create a volume when a container is started?
OptionsMultipleChoice
Which one of the following commands will show a list of volumes for a specific container?
OptionsMultipleChoice
Two pods bear the same label, app: dev.
Will a label selector matching app: dev match both of these pods?
OptionsMultipleChoice
Which statement is correct about cluster management in Docker Enterprise Edition 3.x?
OptionsMultipleChoice
The following health check exists in a Dockerfile:
'HEALTCHECK CMD curl --fail http://localhost/health || exit 1'
Which of the following describes its purpose?
OptionsMultipleChoice
A container named 'analytics' that stores results in a volume called 'data' was created.
docker run -d --name=analytics -v data:/data app1
How are the results accessed in 'data' with another container called 'app2'?
Options