You have a server named Server1 that runs Windows Server 2016. The Docker daemon runs on Server1.
You need to ensure that members of a security group named Docker Administrators can administer Docker.
What should you do?

A.
Run the Set-Service cmdlet.
B.
Modify the Security settings of Dockerd.exe.
C.
Edit the Daemon.json file.
D.
Modify the Security settings of Docker.exe.
Explanation:
References:
https://docs.microsoft.com/en-us/virtualization/windowscontainers/manage-docker/configure-docker-daemon
Answer D
0
14
It’s C, is in the daemon.json file where you configure ports forwarder and permissions
17
0
C
7
0
correct C
Set Docker Security Group
edit daemon.json file and insert
{
“group” : “Docker Administrators”
}
3
0