mirror of
https://github.com/project-zot/zot.git
synced 2025-03-04 02:02:49 -05:00
feat: add support for aws ecr authentication Signed-off-by: K Tamil Vanan <vanan@arcesium.com>
39 lines
No EOL
971 B
JSON
39 lines
No EOL
971 B
JSON
{
|
|
"distSpecVersion": "1.1.0",
|
|
"storage": {
|
|
"rootDirectory": "/tmp/zot",
|
|
"dedupe": false,
|
|
"storageDriver": {
|
|
"name": "s3",
|
|
"region": "REGION_NAME",
|
|
"bucket": "BUGKET_NAME",
|
|
"rootdirectory": "/ROOTDIR",
|
|
"secure": true,
|
|
"skipverify": false
|
|
}
|
|
},
|
|
"http": {
|
|
"address": "0.0.0.0",
|
|
"port": "8080"
|
|
},
|
|
"log": {
|
|
"level": "debug"
|
|
},
|
|
"extensions": {
|
|
"sync": {
|
|
"credentialsFile": "",
|
|
"DownloadDir": "/tmp/zot",
|
|
"registries": [
|
|
{
|
|
"urls": [
|
|
"https://ACCOUNTID.dkr.ecr.REGION.amazonaws.com"
|
|
],
|
|
"onDemand": true,
|
|
"maxRetries": 5,
|
|
"retryDelay": "2m",
|
|
"credentialHelper": "ecr"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
} |