MultipleChoice
How do you change the default logging driver for the docker daemon in Linux?
OptionsMultipleChoice
Is this a Linux kernel namespace that is disabled by default and must be enabled at Docker engine runtime to be used?
Solution: net
OptionsMultipleChoice
Will this command ensure that overlay traffic between service tasks is encrypted?
Solution:docker service create --network--secure
OptionsMultipleChoice
During development of an application meant to be orchestrated by Kubernetes, you want to mount the /data directory on your laptop into a container.
Will this strategy successfully accomplish this?
Solution: Add a volume to the pod that sets hostPath.path: /data, and then mount this volume into the pod's containers as desired.
OptionsMultipleChoice
A user's attempts to set the system time from inside a Docker container are unsuccessful.
Could this be blocking this operation?
Solution.SELinux
OptionsMultipleChoice
Does this command create a swarm service that only listens on port 53 using the UDP protocol?
Solution. 'docker service create -name dns-cache -p 53:53 -udp dns-cache'
OptionsMultipleChoice
Which of the following commands will create a swarm service which only listens on port 53 using the UDP protocol?
OptionsMultipleChoice
Which of the following commands will ensure that overlay traffic between service tasks is encrypted?
OptionsMultipleChoice
You have created a Docker bridge network on a host with three containers attached, how do you make this containers accessible outside of the host?
OptionsMultipleChoice
Will this sequence of steps completely delete an image from disk in the Docker Trusted Registry?
Solution. Delete the image and delete the image repository from Docker Trusted Registry.
Options