Skip to content

Commit b6ff540

Browse files
committed
update known issues
Signed-off-by: Lorena Rangel <[email protected]>
1 parent 7e1a59e commit b6ff540

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

content/manuals/desktop/release-notes.md

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,17 @@ Take a look at the [Docker Public Roadmap](https://github.com/orgs/docker/projec
4040

4141
#### For Mac
4242

43-
- Docker Desktop for Mac might fail to start with macOS reporting either `com.docker.vmnetd` or `com.docker.socket` is malware. As a workaround, follow the steps below:
44-
1. Quit Docker and kill and related processes using the Activity Monitor.
45-
2. Run: `sudo cp /Applications/Docker.app/Contents/Library/LaunchServices/com.docker.vmnetd /Library/PrivilegedHelperTools/`.
46-
3. Run: `sudo cp /Applications/Docker.app/Contents/MacOS/com.docker.socket /Library/PrivilegedHelperTools/`.
47-
4. Restart Docker Desktop.
48-
5. If this doesn't work, update to a later version and rerun the steps. See [docker/for-mac#7520](https://github.com/docker/for-mac/issues/7520)
43+
- An issue with the updater caused certain binaries (specifically `com.docker.vmnetd` and `com.docker.socket`) to not be updated during the release process. As a result, when signing certificates were rotated, these binaries remained signed with the old certificates. This issue, which manifested after release, may cause macOS to incorrectly report either `com.docker.vmnetd` or `com.docker.socket` as malware on installed versions of Docker Desktop for Mac.
44+
1. Stop the vmnetd service: `sudo launchctl bootout system/com.docker.vmnetd`
45+
2. Stop the socket service: `sudo launchctl bootout system/com.docker.socket`
46+
3. Remove vmnetd binary: `sudo rm -f /Library/PrivilegedHelperTools/com.docker.vmnetd`
47+
4. Remove socket binary: `sudo rm -f /Library/PrivilegedHelperTools/com.docker.socket`
48+
5. Stop any remaining Docker process: `sudo pkill [dD]ocker`
49+
6. Install new binaries
50+
```
51+
sudo cp /Applications/Docker.app/Contents/Library/LaunchServices/com.docker.vmnetd /Library/PrivilegedHelperTools/
52+
sudo cp /Applications/Docker.app/Contents/MacOS/com.docker.socket /Library/PrivilegedHelperTools/
53+
```
4954
5055
## 4.37.0
5156

0 commit comments

Comments
 (0)