Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Docker: How do I add myself to the docker-users group on windows 10 home?

Tags:

docker

I am getting the following error

The current user is not in the 'docker-users' group. Add yourself to the 'docker-users' group and then log out and back in to Windows.

How do I solve this on Windows 10 Home? All the examples I find are for enterprise or pro versions of Windows.

like image 614
coolblue2000 Avatar asked Apr 30 '20 19:04

coolblue2000


Video Answer


1 Answers

Run this command from an administrator command window to add your user id to the docker-users group and log back into your user account for it to take effect.

net localgroup docker-users "your-user-id" /ADD
like image 141
Pradyumna Revur Avatar answered Sep 19 '22 17:09

Pradyumna Revur