mirror of https://github.com/docker/docs.git
scout: dd sbom indexing settings (#18461)
Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com>
This commit is contained in:
parent
270c2ef7b6
commit
c434eec2de
|
@ -39,6 +39,7 @@ Using the `admin-settings.json` file, admins can:
|
|||
- Configure Docker Engine
|
||||
- Turn off Docker Desktop's ability to checks for updates
|
||||
- Turn off Docker Extensions
|
||||
- Turn off Docker Scout SBOM indexing
|
||||
|
||||
For more details on the syntax and options admins can set, see [Configure Settings Management](configure.md).
|
||||
|
||||
|
|
|
@ -108,6 +108,11 @@ The following `admin-settings.json` code and table provides an example of the re
|
|||
"extensionsEnabled": {
|
||||
"value": false,
|
||||
"locked": true
|
||||
},
|
||||
"scout": {
|
||||
"locked": false,
|
||||
"sbomIndexing": true,
|
||||
"useBackgroundIndexing": true
|
||||
}
|
||||
}
|
||||
```
|
||||
|
@ -129,6 +134,7 @@ The following `admin-settings.json` code and table provides an example of the re
|
|||
|`disableUpdate`| |If `value` is set to true, checking for and notifications about Docker Desktop updates is disabled.|
|
||||
|`analyticsEnabled`| |If `value` is set to false, Docker Desktop doesn't send usage statistics to Docker. |
|
||||
|`extensionsEnabled`| |If `value` is set to false, Docker extensions are disabled. |
|
||||
|`scout`|| Setting `useBackgroundIndexing` to `false` disables automatic indexing of images loaded to the image store. Setting `sbomIndexing` to `false` prevents the manual indexing triggered by inspecting an image in Docker Desktop.<br><br>**Note**: Users can still use the `docker scout` CLI commands to index images, even if indexing is disabled in Settings Management. |
|
||||
|
||||
### Step three: Re-launch Docker Desktop
|
||||
>**Note**
|
||||
|
|
|
@ -44,6 +44,10 @@ If you choose the integrated terminal, you can run commands in a running contain
|
|||
|
||||
- **Show CLI hints**. Displays CLI hints and tips when running Docker commands in the CLI. This is turned on by default. To turn CLI hints on or off from the CLI, set `DOCKER_CLI_HINTS` to `true` or `false` respectively.
|
||||
|
||||
- **SBOM Indexing**. When this option is enabled, inspecting an image in Docker Desktop shows a **Start analysis** button that, when selected, analyzes the image with Docker Scout.
|
||||
|
||||
- **Enable background SBOM indexing**. When this option is enabled, Docker Scout automatically analyzes images that you build or pull.
|
||||
|
||||
## Resources
|
||||
|
||||
The **Resources** tab allows you to configure CPU, memory, disk, proxies,
|
||||
|
|
|
@ -64,6 +64,10 @@ If you choose the integrated terminal, you can run commands in a running contain
|
|||
|
||||
- **Show CLI hints**. Displays CLI hints and tips when running Docker commands in the CLI. This is turned on by default. To turn CLI hints on or off from the CLI, set `DOCKER_CLI_HINTS` to `true` or `false` respectively.
|
||||
|
||||
- **SBOM Indexing**. When this option is enabled, inspecting an image in Docker Desktop shows a **Start analysis** button that, when selected, analyzes the image with Docker Scout.
|
||||
|
||||
- **Enable background SBOM indexing**. When this option is enabled, Docker Scout automatically analyzes images that you build or pull.
|
||||
|
||||
## Resources
|
||||
|
||||
The **Resources** tab allows you to configure CPU, memory, disk, proxies,
|
||||
|
|
|
@ -53,6 +53,10 @@ On the **General** tab, you can configure when to start Docker and specify other
|
|||
|
||||
- **Show CLI hints**. Displays CLI hints and tips when running Docker commands in the CLI. This is turned on by default. To turn CLI hints on or off from the CLI, set `DOCKER_CLI_HINTS` to `true` or `false` respectively.
|
||||
|
||||
- **SBOM Indexing**. When this option is enabled, inspecting an image in Docker Desktop shows a **Start analysis** button that, when selected, analyzes the image with Docker Scout.
|
||||
|
||||
- **Enable background SBOM indexing**. When this option is enabled, Docker Scout automatically analyzes images that you build or pull.
|
||||
|
||||
## Resources
|
||||
|
||||
The **Resources** tab allows you to configure CPU, memory, disk, proxies,
|
||||
|
|
Loading…
Reference in New Issue