Docker DCA Practice Test - Questions Answers, Page 12
List of questions
Question 111
Is this a way to configure the Docker engine to use a registry without a trusted TLS certificate?
Solution. Set INSECURE_REGISTRY in the' /etc/docker/default' configuration file.
Question 112
Is this a way to configure the Docker engine to use a registry without a trusted TLS certificate?
Solution. Set and export the IGNORE_TLS environment variable on the command line.
Question 113
Will this command display a list of volumes for a specific container?
Solution. 'docker container logs nginx --volumes'
Question 114
Is this a supported user authentication method for Universal Control Plane?
Solution. SAML
Question 115
Is this a supported user authentication method for Universal Control Plane?
Solution. x.500
Question 116
Is this statement correct?
Solution. A Dockerfile stores persistent data between deployments of a container
Question 117
Will this command ensure that overlay traffic between service tasks is encrypted?
Solution. docker network create -d overlay --secure <network-name>
Question 118
An application image runs in multiple environments, with each environment using different certificates and ports. Is this a way to provision configuration to containers at runtime?
Solution. Create a Dockerfile for each environment, specifying ports and Docker secrets for certificates.
Question 119
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.
Question 120
Two development teams in your organization use Kubernetes and want to deploy their applications while ensuring that Kubernetes-specific resources, such as secrets, are grouped together for each application.
Is this a way to accomplish this?
Solution. Create a collection for for each application.
Question