Docker Desktop user must be added to "docker-users" group but I can't change groups in Windows Home

Docker Desktop install on Windows Home. I get the error notification "You must in the docker-users group."

So you can go to compmgmt.msc to add yourself to the group, but Windows Home doesnt have User Groups management like Windows Pro.

How can I do this for Windows Home?

0

1 Answer

How can I do this for Windows Home?

Run the following command in an elevated command prompt.

net localgroup docker-users username /add

Source: Docker User Group

You can also run a PowerShell command within an elevated PowerShell prompt:

Add-LocalGroupMember -Group "docker-users" -Member "User"

1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like