-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdocker.cfg
More file actions
44 lines (44 loc) · 1.02 KB
/
docker.cfg
File metadata and controls
44 lines (44 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"registry": "ghcr.io",
"security": {
"scan": true,
"only_high_critical": true,
"trivy_scan": true,
"grype_scan": true,
"only_fixed": true,
"continue_on_error": true,
"tag": "latest"
},
"defaults": {
"dockerfile": "Dockerfile",
"context": ".",
"tags": "latest",
"platforms": "linux/amd64, linux/arm64"
},
"components": [
{
"name": "qubership-kafka-integration-tests",
"file": "integration-tests/docker/Dockerfile",
"context": "integration-tests",
"changeset": ["integration-tests"]
},
{
"name": "qubership-kafka-crd-init",
"file": "crd-init/docker/Dockerfile",
"context": "crd-init",
"changeset": ["crd-init"]
},
{
"name": "qubership-kafka-operator",
"file": "operator/Dockerfile",
"context": "operator",
"changeset": ["operator"]
},
{
"name": "qubership-kafka-transfer",
"file": "docker-transfer/kafka/Dockerfile",
"context": ".",
"changeset": [""]
}
]
}