You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/manuals/security/for-admins/enforce-sign-in/methods.md
+82Lines changed: 82 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,6 +47,88 @@ There are many ways to deploy the registry key, for example using an MDM solutio
47
47
7. Test the GPO. Test the GPO on a small set of machines first to ensure it behaves as expected. You can use the `gpupdate /force` command on a test machine to manually refresh its group policy settings and check the registry to confirm the changes.
48
48
8. Once verified, you can proceed with broader deployment. Monitor the deployment to ensure the settings are applied correctly across the organization's computers.
49
49
50
+
## Configuration Profiles method (Mac only)
51
+
52
+
> [!NOTE]
53
+
>
54
+
> The configuration profiles method is available with Docker Desktop version 4.35 and later.
55
+
56
+
Configuration Profiles are a feature of macOS that allows administrators to distribute
57
+
configuration information to the Macs they manage. Is is the safest method to
58
+
enforce sign-in on macOS because the installed configuration profiles are
59
+
protected by Apples' System Integrity Protection (SIP) and can therefore not be
60
+
tampered with by the users.
61
+
62
+
1. Save the the following XML code to a file with the suffix `.mobileconfig` (e.g.
63
+
`docker.mobileconfig`):
64
+
65
+
66
+
```xml
67
+
<?xml version="1.0" encoding="UTF-8"?>
68
+
<!DOCTYPEplist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
0 commit comments