mirror of
https://github.com/project-zot/zot.git
synced 2024-12-16 21:56:37 -05:00
4e5db84cb1
BREAKING CHANGE: the dist spec version in the config files needs to be bumped to 1.1.0 in order for the config verification to pass without warnings. Also fix 1 dependabot alert for helm. Signed-off-by: Andrei Aaron <aaaron@luxoft.com>
99 lines
2 KiB
JSON
99 lines
2 KiB
JSON
{
|
|
"distSpecVersion": "1.1.0",
|
|
"storage": {
|
|
"rootDirectory": "/data"
|
|
},
|
|
"http": {
|
|
"address": "0.0.0.0",
|
|
"port": "5000"
|
|
},
|
|
"log": {
|
|
"level": "info"
|
|
},
|
|
"extensions": {
|
|
"sync": {
|
|
"credentialsFile": "/config/credentials.json",
|
|
"enable": true,
|
|
"registries": [
|
|
{
|
|
"urls": [
|
|
"https://index.docker.io"
|
|
],
|
|
"content": [
|
|
{
|
|
"destination": "/docker.io",
|
|
"prefix": "**"
|
|
}
|
|
],
|
|
"onDemand": true,
|
|
"tlsVerify": true
|
|
},
|
|
{
|
|
"urls": [
|
|
"https://registry.gitlab.com"
|
|
],
|
|
"content": [
|
|
{
|
|
"destination": "/registry.gitlab.com",
|
|
"prefix": "**"
|
|
}
|
|
],
|
|
"onDemand": true,
|
|
"tlsVerify": true
|
|
},
|
|
{
|
|
"urls": [
|
|
"https://ghcr.io"
|
|
],
|
|
"content": [
|
|
{
|
|
"destination": "ghcr.io",
|
|
"prefix": "**"
|
|
}
|
|
],
|
|
"onDemand": true,
|
|
"tlsVerify": true
|
|
},
|
|
{
|
|
"urls": [
|
|
"https://quay.io"
|
|
],
|
|
"content": [
|
|
{
|
|
"destination": "/quay.io",
|
|
"prefix": "**"
|
|
}
|
|
],
|
|
"onDemand": true,
|
|
"tlsVerify": true
|
|
},
|
|
{
|
|
"urls": [
|
|
"https://gcr.io"
|
|
],
|
|
"content": [
|
|
{
|
|
"destination": "/gcr.io",
|
|
"prefix": "**"
|
|
}
|
|
],
|
|
"onDemand": true,
|
|
"tlsVerify": true
|
|
},
|
|
{
|
|
"urls": [
|
|
"https://registry.k8s.io"
|
|
],
|
|
"content": [
|
|
{
|
|
"destination": "/registry.k8s.io",
|
|
"prefix": "**"
|
|
}
|
|
],
|
|
"onDemand": true,
|
|
"tlsVerify": true
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|