Skip to content

Commit f1cae98

Browse files
authored
DS-884 Add an admin setting for displayedOnboarding (#19782)
* Add an admin setting for displayedOnboarding * Add onboarding survey to settings managment list
1 parent bf9e3bf commit f1cae98

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

content/desktop/hardened-desktop/settings-management/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ Using the `admin-settings.json` file, admins can:
4242
- Turn off Docker Extensions
4343
- Turn off Docker Scout SBOM indexing
4444
- Turn off beta and experimental features
45+
- Turn off Docker Desktop's onboarding survey
4546
- Control the file sharing implementation for your developers on macOS
4647
- Specify which paths your developers can add file shares to
4748
- Configure air-gapped containers (Beta)

content/desktop/hardened-desktop/settings-management/configure.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,10 @@ The following `admin-settings.json` code and table provides an example of the re
169169
"useGrpcfuse": {
170170
"locked": true,
171171
"value": true
172+
},
173+
"displayedOnboarding": {
174+
"locked": true,
175+
"value": true
172176
}
173177
}
174178
```
@@ -202,6 +206,7 @@ The following `admin-settings.json` code and table provides an example of the re
202206
| `useVirtualizationFrameworkVirtioFS`| macOS only | If `value` is set to `true`, VirtioFS is set as the file sharing mechanism. Note: If both `useVirtualizationFrameworkVirtioFS` and `useGrpcfuse` have `value` set to `true`, VirtioFS takes precedence. Likewise, if both `useVirtualizationFrameworkVirtioFS` and `useGrpcfuse` have `value` set to `false`, osxfs is set as the file sharing mechanism. |
203207
| `useVirtualizationFrameworkRosetta`| macOS only | If `value` is set to `true`, Docker Desktop turns on Rosetta to accelerate x86_64/amd64 binary emulation on Apple Silicon. Note: This also automatically enables `Use Virtualization framework`. |
204208
| `useGrpcfuse` | macOS only | If `value` is set to `true`, gRPC Fuse is set as the file sharing mechanism. |
209+
| `displayedOnboarding` | | If `value` is set to `true`, the onboarding survey will not be displayed to new users. Setting `value` to `false` has no effect. |
205210

206211

207212
### Step three: Re-launch Docker Desktop

0 commit comments

Comments
 (0)