Skip to content

Commit 2f5e7a0

Browse files
committed
fix a few small issues
1 parent 6845fa7 commit 2f5e7a0

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

docs/containers/troubleshooting-docker-errors.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,24 +56,25 @@ When using Docker for macOS, you might encounter an error referencing the folder
5656
You might encounter the following error in Visual Studio when working with containers:
5757

5858
```
59-
The current user must be in the 'docker-users' group to use Docker Desktop. Add yourself to the 'docker-users' group and then log out of Windows.
59+
The current user must be in the 'docker-users' group to use Docker Desktop.
60+
Add yourself to the 'docker-users' group and then log out of Windows.
6061
```
6162

6263
You must be a member of the 'docker-users' group in order to have permissions to work with Docker containers. To add yourself to the group in Windows 10, follow these steps:
6364

6465
1. From the Start menu, open **Computer Management**.
6566
1. Expand **Local Users and Groups**, and choose **Groups**.
6667
1. Find the **docker-users** group, right-click and choose **Add to group**.
67-
1. Add your user account(s).
68+
1. Add your user account or accounts.
6869
1. Log out and log back in again for these changes to take effect.
6970

7071
You can also use the `net localgroup` command at the Administrator command prompt to add users to specific groups.
7172

7273
```cmd
73-
net localgroup docker-users DOMAIN/username /add
74+
net localgroup docker-users DOMAIN\username /add
7475
```
7576

76-
Or to use a PowerShell command, see [Add-LocalGroupMember](/powershell/module/microsoft.powershell.localaccounts/add-localgroupmember).
77+
In PowerShell, use the [Add-LocalGroupMember](/powershell/module/microsoft.powershell.localaccounts/add-localgroupmember) function.
7778

7879
## Microsoft/DockerTools GitHub repo
7980

0 commit comments

Comments
 (0)