mapletree/lxc1/p2-apps/zot/config.json
admin 7d0bf3d895
Some checks are pending
PVE2 Infrastructure Deploy / terraform (push) Waiting to run
fixed formatting and errors in zot config
2026-02-06 15:08:30 -07:00

82 lines
No EOL
1.6 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://registry-1.docker.io"
],
"onDemand": true,
"tlsVerify": true,
"content": [
{
"prefix": "docker-hub/**",
"destination": "/",
"stripPrefix": true
}
]
},
{
"urls": [
"https://ghcr.io"
],
"onDemand": true,
"tlsVerify": true,
"content": [
{
"prefix": "ghcr/**",
"destination": "/",
"stripPrefix": true
}
]
},
{
"urls": [
"https://lscr.io"
],
"onDemand": true,
"tlsVerify": true,
"content": [
{
"prefix": "lscr/**",
"destination": "/",
"stripPrefix": true
}
]
},
{
"urls": [
"https://codeberg.org"
],
"onDemand": true,
"tlsVerify": true,
"content": [
{
"prefix": "codeberg/**",
"destination": "/",
"stripPrefix": true
}
]
}
]
},
"ui": {
"enable": true
},
"search": {
"enable": true
}
}
}