Docker DCA Practice Test - Questions Answers, Page 7

List of questions
Question 61

Will this command display a list of volumes for a specific container?
Solution: docker volume logs nginx --containers'
Question 62

Will this command display a list of volumes for a specific container?
Solution: docker volume inspect nginx'
Question 63

Does this describe the role of Control Groups (cgroups) when used with a Docker container?
Solution: user authorization to the Docker API
Question 64

Does this describe the role of Control Groups (cgroups) when used with a Docker container?
Solution: role-based access control to clustered resources
Question 65

Does this describe the role of Control Groups (cgroups) when used with a Docker container?
Solution: accounting and limiting of resources
Question 66

Will this command ensure that overlay traffic between service tasks is encrypted?
Solution: docker network create -d overlay -o encrypted=true <network-name>
Question 67

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

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

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

You want to create a container that is reachable from its host's network. Does this action accomplish this?
Solution: Use --link to access the container on the bridge network.
Question