Home Explore Blog Models CI



docker

_vendor/github.com/docker/scout-cli/docs/scout_repo_disable.md
77d3c4d75f54d8bf961eaeb106d112024723007a1b28d34d000000030000059f
# docker scout repo disable

<!---MARKER_GEN_START-->
Disable Docker Scout

### Options

| Name            | Type     | Default | Description                                                                  |
|:----------------|:---------|:--------|:-----------------------------------------------------------------------------|
| `--all`         |          |         | Disable all repositories of the organization. Can not be used with --filter. |
| `--filter`      | `string` |         | Regular expression to filter repositories by name                            |
| `--integration` | `string` |         | Name of the integration to use for enabling an image                         |
| `--org`         | `string` |         | Namespace of the Docker organization                                         |
| `--registry`    | `string` |         | Container Registry                                                           |


<!---MARKER_GEN_END-->

## Examples

### Disable a specific repository

```console
$ docker scout repo disable my/repository
```

### Disable all repositories of the organization

```console
$ docker scout repo disable --all
```

### Disable some repositories based on a filter

```console
$ docker scout repo disable --filter namespace/backend
```

### Disable a repository from a specific registry

```console
$ docker scout repo disable my/repository --registry 123456.dkr.ecr.us-east-1.amazonaws.com
```

Chunks
7ed0ad96 (1st chunk of `_vendor/github.com/docker/scout-cli/docs/scout_repo_disable.md`)
Title: docker scout repo disable: Disabling Docker Scout for Repositories
Summary
The `docker scout repo disable` command allows you to disable Docker Scout for specific repositories, all repositories within an organization, or repositories matching a filter. Options include specifying the integration, organization, registry, and using regular expressions to filter repositories by name. Examples are provided for disabling a specific repository, all repositories, repositories based on a filter, and a repository from a specific registry.