Docker DCA - Docker Certified Associate (DCA) Exam
Is this a Linux kernel namespace that is disabled by default and must be enabled at Docker engine runtime to be used?
Solution.pid
You configure a local Docker engine to enforce content trust by setting the environment variable
DOCKER_CONTENT_TRUST=1.
If myorg/myimage: 1.0 is unsigned, does Docker block this command?
Solution: docker service create myorg/myimage:1.0
Will this sequence of steps completely delete an image from disk in the Docker Trusted Registry?
Solution: Delete the image and run garbage collection on the Docker Trusted Registry.
Is this the purpose of Docker Content Trust?
Solution.Sign and verify image tags.
Will this Linux kernel facility limit a Docker container's access to host resources, such as CPU or memory?
Solution: seccomp
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 mount the host's '/data' directory to the ubuntu container in read-only mode?
Solution: 'docker run --volume /data:/mydata:ro ubuntu'
Can this set of commands identify the published port(s) for a container?
Solution. ‘docker container inspect", docker port'
Will a DTR security scan detect this?
Solution: known vulnerabilities or exposures in binaries
In the context of a swarm mode cluster, does this describe a node?
Solution: a physical machine participating in the swarm
