Home Explore Blog Models CI



docker

1st chunk of `_vendor/github.com/docker/scout-cli/docs/scout_config.md`
fde0b6e5d32d42aed736ce8db01c28b73b5c232f5980a13200000001000002ab
# docker scout config

<!---MARKER_GEN_START-->
Manage Docker Scout configuration


<!---MARKER_GEN_END-->

## Description

`docker scout config` allows you to list, get and set Docker Scout configuration.

Available configuration key:

- `organization`: Namespace of the Docker organization to be used by default.

## Examples

### List existing configuration

```console
$ docker scout config
organization=my-org-namespace
```

### Print configuration value

```console
$ docker scout config organization
my-org-namespace
```

### Set configuration value

```console
$ docker scout config organization my-org-namespace
    ✓ Successfully set organization to my-org-namespace
```

Title: Docker Scout Configuration Management
Summary
The `docker scout config` command is used to manage Docker Scout's configuration settings. It allows users to list, get, and set configuration values. Currently, the configurable key is `organization`, which represents the default Docker organization namespace used by Docker Scout. The documentation provides examples of how to list all configurations, print a specific configuration value, and set a new configuration value.