-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
21 lines (21 loc) · 1.17 KB
/
plugin.json
File metadata and controls
21 lines (21 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"$schema": "https://raw.githubusercontent.com/yoki-run/yoki/main/plugin.schema.json",
"name": "Docker",
"keyword": "dc",
"icon": "<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='#0db7ed' d='M13 9h2v2h-2zM10 9h2v2h-2zM7 9h2v2H7zM10 6h2v2h-2zM13 6h2v2h-2zM13 3h2v2h-2z'/><path fill='#0db7ed' d='M22 10s-2-2-5-1c-1-4-6-4-6-4s-1 2-1 4c-1-1-3-1-3-1S6 9 6 10H3v2c0 4 3 8 8 8 5 0 8-3 9-6 2 0 3-2 3-4h-1z'/></svg>",
"description": "Control Docker containers and images from Yoki",
"version": "1.0.0",
"author": "Yoki",
"license": "MIT",
"categories": ["developer"],
"yoki_min": "1.1.0",
"protocol": "v2",
"permissions": {
"exec": ["docker", "Docker Desktop", "wt", "pwsh", "powershell", "cmd"]
},
"commands": [
{ "name": "ps", "title": "Containers", "mode": "list", "exec": "ps.js", "refresh": 3000, "takes_query": true },
{ "name": "images", "title": "Images", "mode": "list", "exec": "images.js", "keywords": ["images", "img", "i"], "takes_query": true },
{ "name": "prune", "title": "Prune system","mode": "background", "exec": "prune.js", "keywords": ["prune", "clean"], "takes_query": true }
]
}