mirror of
https://github.com/sergi0g/cup.git
synced 2025-11-15 00:23:48 -05:00
23 lines
530 B
Plaintext
23 lines
530 B
Plaintext
# Ignored registries
|
|
|
|
If you want to skip checking images from some registries, you can modify your config like this:
|
|
|
|
```jsonc
|
|
{
|
|
"registries": {
|
|
"<SOME_REGISTRY_DOMAIN_1>": {
|
|
"ignore": true
|
|
// Other options
|
|
},
|
|
"<SOME_REGISTRY_DOMAIN_2>" {
|
|
"ignore": false
|
|
// Other options
|
|
},
|
|
// ...
|
|
}
|
|
// Other options
|
|
}
|
|
```
|
|
|
|
This configuration option is a bit redundant, since you can achieve the same with [this option](/docs/configuration/include-exclude-images). It's recommended to use that.
|