We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3933de8 commit ca9aafaCopy full SHA for ca9aafa
1 file changed
src/utils/commands.json
@@ -41,12 +41,23 @@
41
"Kill Container": {
42
"command": "docker kill",
43
"option": "$CONTAINER",
44
- "description": "Kill one or more containers."
+ "description": "Kill one or more running containers (SIGKILL)"
45
+ },
46
+ "Stop Container" : {
47
+ "command": "docker stop",
48
+ "option": "$CONTAINER",
49
+ "description": "Stop one or more running containers (SIGTERM)"
50
+
51
52
+ "Start Container": {
53
+ "command": "docker start",
54
55
+ "description": "Start a container."
56
},
57
"Restart Container": {
58
"command": "docker restart",
59
- "description": "Restart one or more containers."
60
+ "description": "Stop and start a container in one command."
61
62
"Run Interactive Shell": {
63
"command": "docker exec -it",
0 commit comments