Docker DCA - Docker Certified Associate (DCA) Exam
Will this command ensure that overlay traffic between service tasks is encrypted?
Solution:docker network create -d overlay --secure
How do you change the default logging driver for the docker daemon in Linux?
Will this command mount the host's '/data' directory to the ubuntu container in read-only mode?
Solution: 'docker run --add-volume /data /mydata -read-only ubuntu'
Will this command list all nodes in a swarm cluster from the command line?
Solution. ‘docker inspect nodes
Is this the purpose of Docker Content Trust?
Solution: Verify and encrypt Docker registry TLS.
Can this set of commands identify the published port(s) for a container?
Solution: docker container inspect', 'docker port'
You are troubleshooting a Kubernetes deployment called api, and want to see the events table for this object. Does this command display it?
Solution: kubectl events deployment api
