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.
Edit the Configuration.json file.
B.
Modify the Security settings of Docker.exe.
C.
Run the Set-Service cmdlet.
D.
Run the sc config command.
Explanation:
References: https://docs.microsoft.com/en-us/virtualization/windowscontainers/manage-docker/configuredocker-daemon
This one reference is broken. Fortunately, answer given there: https://www.briefmenow.org/microsoft/you-need-to-ensure-that-members-of-a-security-group-nam/
is the correct one: A).
0
3
Now I think that’s the correct one is D. As D describes simply alternative method of docker service configuration. As it is said:
“The Docker Engine can also be configured by modifying the Docker service using sc config. Using this method, Docker Engine flags are set directly on the Docker service.”
https://docs.microsoft.com/en-us/virtualization/windowscontainers/manage-docker/configure-docker-daemon
8
1
Answer D does not make sense, see https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/sc-config
1
1
the correct answer is daemon.json file
2
2
I think D. It looks like we need to start docker.exe with extra param -G
That can be changed with sc config service binpath=
0
2
It can be done also by deamon.json but if thats not an anwser i would go for D
0
0
Correct answer: Daemon.json
Best answer would be configuration.json file.
Daemon.json is the configuration file for Docker….so if Daemon.json is not listed, I would choose A. The other answers are not valid.
1
6
Correct A
possible set with sc config.
no add Group
Options:
–config string Location of client config files (default “/root/.docker”)
-D, –debug Enable debug mode
–help Print usage
-H, –host value Daemon socket(s) to connect to (default [])
-l, –log-level string Set the logging level (“debug”|”info”|”warn”|”error”|”fatal”) (default “info”)
–tls Use TLS; implied by –tlsverify
–tlscacert string Trust certs signed only by this CA (default “/root/.docker/ca.pem”)
–tlscert string Path to TLS certificate file (default “/root/.docker/cert.pem”)
–tlskey string Path to TLS key file (default “/root/.docker/key.pem”)
–tlsverify Use TLS and verify the remote
-v, –version Print version information and quit
2
0