mapletree/lxc1/p2-apps/zot/config.json
admin 9630b9eed2
Some checks are pending
PVE2 Infrastructure Deploy / terraform (push) Waiting to run
add stripprefix for zot config
2026-02-06 14:58:04 -07:00

66 lines
No EOL
1.3 KiB
JSON

{
"distSpecVersion": "1.1.0",
"storage": {
"rootDirectory": "/var/lib/zot",
"gc": true,
"dedupe": true
},
"http": {
"address": "0.0.0.0",
"port": "5000"
},
"extensions": {
"sync": {
"enable": true,
"credentialsFile": "/etc/zot/creds.json",
"registries": [
{
"urls": ["https://docker.io"],
"onDemand": true,
"tlsVerify": true,
"content": [
{ "prefix": "docker-hub/**",
"stripPrefix": true
}
]
},
{
"urls": ["https://ghcr.io"],
"onDemand": true,
"tlsVerify": true,
"content": [
{ "prefix": "ghcr/**",
"stripPrefix": true
}
]
},
{
"urls": ["https://lscr.io"],
"onDemand": true,
"tlsVerify": true,
"content": [
{ "prefix": "lscr/**",
"stripPrefix": true
}
]
},
{
"urls": ["https://codeberg.org"],
"onDemand": true,
"tlsVerify": true,
"content": [
{ "prefix": "lscr/**",
"stripPrefix": true
}
]
}
]
},
"ui": {
"enable": true
},
"search": {
"enable": true
}
}
}