feat: initial commit

This commit is contained in:
Simon Cornet 2026-05-08 08:34:04 +02:00
commit 3063fd9b39
15 changed files with 242 additions and 93 deletions

View file

@ -0,0 +1,24 @@
{
"distSpecVersion": "1.1.1",
"storage": {
"rootDirectory": "/var/lib/zot"
},
"http": {
"address": "127.0.0.1",
"port": "5000"
},
"log": {
"level": "info"
},
"extensions": {
"ui": {
"enable": true
},
"search": {
"enable": true
"cve": {
"updateInterval": "24h"
}
}
}
}

View file

@ -0,0 +1,17 @@
[Unit]
Description=OCI Distribution Registry
Documentation=https://zotregistry.dev/
After=network.target auditd.service local-fs.target
[Service]
Type=simple
ExecStart=/usr/bin/zot serve /etc/zot/config.json
Restart=on-failure
User=root
Group=root
LimitNOFILE=500000
MemoryHigh=1G
MemoryMax=2G
[Install]
WantedBy=multi-user.target