Is this the purpose of Docker Content Trust?
Solution: Verify and encrypt Docker registry TLS.
Will this command list all nodes in a swarm cluster from the command line?
Solution: ‘docker Is -a’
Is this the purpose of Docker Content Trust?
Solution: Enable mutual TLS between the Docker client and server.
Is this an advantage of multi-stage builds?
Solution.better logical separation of Dockerfile instructions for increased readability
Will this command display a list of volumes for a specific container?
Solution: docker volume logs nginx --containers'
Is this a way to configure the Docker engine to use a registry without a trusted TLS certificate?
Solution: List insecure registries in the 'daemon.json configuration file under the \insecure-registries' key.
Will this Linux kernel facility limit a Docker container's access to host resources, such as CPU or memory?
Solution: cgroups
Is this the purpose of Docker Content Trust?
Solution.Sign and verify image tags.
Is this a Linux kernel namespace that is disabled by default and must be enabled at Docker engine runtime to be used?
Solution.pid
During development of an application meant to be orchestrated by Kubemetes, you want to mount the /data directory on your laptop into a container.
Will this strategy successfully accomplish this?
Solution. Create a Persistent VolumeClaim requesting storageClass:”” (which defaults to local storage) and hostPath: /data, and use this to populate a volume in a pod.