-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.cve.yml
More file actions
66 lines (58 loc) · 1.52 KB
/
docker-compose.cve.yml
File metadata and controls
66 lines (58 loc) · 1.52 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
version: "2"
services:
python-base:
build: "base"
command: "base"
entrypoint: /security/parse-cve.sh
volumes:
- ./cve-reports:/cve-reports
- ./scripts/parse-cve.sh:/security/parse-cve.sh
python-27:
build: "2.7"
command: "2.7"
entrypoint: /security/parse-cve.sh
volumes:
- ./cve-reports:/cve-reports
- ./scripts/parse-cve.sh:/security/parse-cve.sh
python-36:
build: "3.6"
command: "3.6"
entrypoint: /security/parse-cve.sh
volumes:
- ./cve-reports:/cve-reports
- ./scripts/parse-cve.sh:/security/parse-cve.sh
python-37:
build: "3.7"
command: "3.7"
entrypoint: /security/parse-cve.sh
volumes:
- ./cve-reports:/cve-reports
- ./scripts/parse-cve.sh:/security/parse-cve.sh
python-38:
build: "3.8"
command: "3.8"
entrypoint: /security/parse-cve.sh
volumes:
- ./cve-reports:/cve-reports
- ./scripts/parse-cve.sh:/security/parse-cve.sh
python-39:
build: "3.9"
command: "3.9"
entrypoint: /security/parse-cve.sh
volumes:
- ./cve-reports:/cve-reports
- ./scripts/parse-cve.sh:/security/parse-cve.sh
python-310:
build: "3.10"
command: "3.10"
entrypoint: /security/parse-cve.sh
volumes:
- ./cve-reports:/cve-reports
- ./scripts/parse-cve.sh:/security/parse-cve.sh
python-311:
build: "3.11"
command: "3.11"
entrypoint: /security/parse-cve.sh
volumes:
- ./cve-reports:/cve-reports
- ./scripts/parse-cve.sh:/security/parse-cve.sh