-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker.json
More file actions
82 lines (82 loc) · 2.45 KB
/
Copy pathdocker.json
File metadata and controls
82 lines (82 loc) · 2.45 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"tool": "docker",
"displayName": "Docker",
"detection": {
"commands": ["docker", "docker-compose", "docker-buildx"],
"paths": ["/Applications/Docker.app", "/usr/local/bin/docker"]
},
"caches": [
{
"id": "docker-images",
"path": "~/Library/Containers/com.docker.docker/Data/vms/0/data/docker/image",
"type": "packages",
"description": "Docker images and layers",
"safeToDelete": false,
"requiresConfirmation": true,
"toolCommand": {
"executable": "docker",
"args": ["image", "prune", "-a", "-f"]
}
},
{
"id": "docker-containers",
"path": "~/Library/Containers/com.docker.docker/Data/vms/0/data/docker/containers",
"type": "packages",
"description": "Stopped Docker containers",
"safeToDelete": false,
"requiresConfirmation": true,
"toolCommand": {
"executable": "docker",
"args": ["container", "prune", "-f"]
}
},
{
"id": "docker-volumes",
"path": "~/Library/Containers/com.docker.docker/Data/vms/0/data/docker/volumes",
"type": "packages",
"description": "Unused Docker volumes",
"safeToDelete": false,
"requiresConfirmation": true,
"toolCommand": {
"executable": "docker",
"args": ["volume", "prune", "-f"]
}
},
{
"id": "docker-build-cache",
"path": "~/Library/Containers/com.docker.docker/Data/vms/0/data/docker/buildkit",
"type": "buildArtifacts",
"description": "Docker BuildKit cache",
"safeToDelete": true,
"requiresConfirmation": false,
"toolCommand": {
"executable": "docker",
"args": ["builder", "prune", "-f"]
}
},
{
"id": "docker-networks",
"path": "~/Library/Containers/com.docker.docker/Data/vms/0/data/docker/network",
"type": "packages",
"description": "Unused Docker networks",
"safeToDelete": false,
"requiresConfirmation": true,
"toolCommand": {
"executable": "docker",
"args": ["network", "prune", "-f"]
}
},
{
"id": "docker-system-cache",
"path": "~/Library/Containers/com.docker.docker/Data/vms/0/data/docker",
"type": "packages",
"description": "All unused Docker objects",
"safeToDelete": false,
"requiresConfirmation": true,
"toolCommand": {
"executable": "docker",
"args": ["system", "prune", "-a", "-f", "--volumes"]
}
}
]
}