Question 166

Will this command mount the host's '/data' directory to the ubuntu container in read-only mode?
Solution: 'docker run -v /data:/mydata --mode readonly ubuntu'
  • Question 167

    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 one pod and add all the resources needed for each application
  • Question 168

    Will this command ensure that overlay traffic between service tasks is encrypted?
    Solution:docker network create -d overlay --secure
  • Question 169

    Is this statement correct?
    Solution: A Dockerfile provides instructions for building a Docker image
  • Question 170

    Which one of the following commands will result in the volume being removed automatically once the container
    has exited?