Skip to content

Commit bb56e7c

Browse files
Merge pull request #21781 from docker/published-update
publish updates from main
2 parents 1092bfc + 8016b87 commit bb56e7c

File tree

2 files changed

+31
-24
lines changed

2 files changed

+31
-24
lines changed

content/manuals/admin/organization/activity-logs.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,10 @@ Refer to the following section for a list of events and their descriptions:
6969
| Access token created | Access token created in organization |
7070
| Access token updated | Access token updated in organization |
7171
| Access token deleted | Access token deleted in organization |
72+
| Policy created | Details of adding a settings policy |
73+
| Policy updated | Details of updating a settings policy |
74+
| Policy deleted | Details of deleting a settings policy |
75+
| Policy transferred | Details of transferring a settings policy to another owner |
7276

7377
### Repository events
7478

@@ -103,4 +107,4 @@ Refer to the following section for a list of events and their descriptions:
103107
| Seat Removal Requested | Occurs when a user in your organization requests a decrease in the number of seats. |
104108
| Billing Cycle Change Requested | Occurs when a user in your organization requests a change in the billing cycle. |
105109
| Plan Downgrade Cancellation Requested | Occurs when a user in your organization requests a cancellation of a scheduled plan downgrade. |
106-
| Seat Removal Cancellation Requested | Occurs when a user in your organization requests a cancellation of a scheduled seat removal. |
110+
| Seat Removal Cancellation Requested | Occurs when a user in your organization requests a cancellation of a scheduled seat removal. |

content/manuals/desktop/cert-revoke-solution.md

Lines changed: 26 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -70,36 +70,39 @@ You should now see the Docker Desktop Dashboard.
7070

7171
## MDM script
7272

73-
If you are an IT administrator, you can use the following script as a workaround for your developers if they have a re-signed version of Docker Desktop version 4.35 or later.
73+
If you are an IT administrator and your developers are seeing the malware pop-up:
7474

75-
```console
76-
#!/bin/bash
75+
1. Make sure your developers have a re-signed version of Docker Desktop version 4.32 or later.
76+
2. Run the following script:
7777

78-
# Stop the docker services
79-
echo "Stopping Docker..."
80-
sudo pkill [dD]ocker
78+
```console
79+
#!/bin/bash
8180

82-
# Stop the vmnetd service
83-
echo "Stopping com.docker.vmnetd service..."
84-
sudo launchctl bootout system /Library/LaunchDaemons/com.docker.vmnetd.plist
81+
# Stop the docker services
82+
echo "Stopping Docker..."
83+
sudo pkill [dD]ocker
8584

86-
# Stop the socket service
87-
echo "Stopping com.docker.socket service..."
88-
sudo launchctl bootout system /Library/LaunchDaemons/com.docker.socket.plist
85+
# Stop the vmnetd service
86+
echo "Stopping com.docker.vmnetd service..."
87+
sudo launchctl bootout system /Library/LaunchDaemons/com.docker.vmnetd.plist
8988

90-
# Remove vmnetd binary
91-
echo "Removing com.docker.vmnetd binary..."
92-
sudo rm -f /Library/PrivilegedHelperTools/com.docker.vmnetd
89+
# Stop the socket service
90+
echo "Stopping com.docker.socket service..."
91+
sudo launchctl bootout system /Library/LaunchDaemons/com.docker.socket.plist
9392

94-
# Remove socket binary
95-
echo "Removing com.docker.socket binary..."
96-
sudo rm -f /Library/PrivilegedHelperTools/com.docker.socket
93+
# Remove vmnetd binary
94+
echo "Removing com.docker.vmnetd binary..."
95+
sudo rm -f /Library/PrivilegedHelperTools/com.docker.vmnetd
9796

98-
# Install new binaries
99-
echo "Install new binaries..."
100-
sudo cp /Applications/Docker.app/Contents/Library/LaunchServices/com.docker.vmnetd /Library/PrivilegedHelperTools/
101-
sudo cp /Applications/Docker.app/Contents/MacOS/com.docker.socket /Library/PrivilegedHelperTools/
102-
```
97+
# Remove socket binary
98+
echo "Removing com.docker.socket binary..."
99+
sudo rm -f /Library/PrivilegedHelperTools/com.docker.socket
100+
101+
# Install new binaries
102+
echo "Install new binaries..."
103+
sudo cp /Applications/Docker.app/Contents/Library/LaunchServices/com.docker.vmnetd /Library/PrivilegedHelperTools/
104+
sudo cp /Applications/Docker.app/Contents/MacOS/com.docker.socket /Library/PrivilegedHelperTools/
105+
```
103106

104107
## Homebrew casks
105108

0 commit comments

Comments
 (0)