-
Notifications
You must be signed in to change notification settings - Fork 77
/
docker-container.el
596 lines (524 loc) · 26.1 KB
/
docker-container.el
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
;;; docker-container.el --- Interface to docker-container -*- lexical-binding: t -*-
;; Author: Philippe Vaucher <[email protected]>
;; Yuki Inoue <[email protected]>
;; This file is NOT part of GNU Emacs.
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 3, or (at your option)
;; any later version.
;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs; see the file COPYING. If not, write to the
;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
;; Boston, MA 02110-1301, USA.
;;; Commentary:
;;; Code:
(require 's)
(require 'aio)
(require 'dash)
(require 'json)
(require 'tablist)
(require 'transient)
(require 'docker-core)
(require 'docker-faces)
(require 'docker-utils)
(defgroup docker-container nil
"Docker container customization group."
:group 'docker)
(defconst docker-container-id-template
"{{ json .Names }}"
"This Go template extracts the container id which will be passed to transient commands.")
(defcustom docker-container-shell-file-name "/bin/sh"
"Shell to use when entering containers."
:group 'docker-container
:type 'string)
(defcustom docker-container-default-sort-key '("Image" . nil)
"Sort key for docker containers.
This should be a cons cell (NAME . FLIP) where
NAME is a string matching one of the column names
and FLIP is a boolean to specify the sort order."
:group 'docker-container
:type '(cons (string :tag "Column Name"
:validate (lambda (widget)
(unless (--any-p (equal (plist-get it :name) (widget-value widget)) docker-container-columns)
(widget-put widget :error "Default Sort Key must match a column name")
widget)))
(choice (const :tag "Ascending" nil)
(const :tag "Descending" t))))
(defcustom docker-container-columns
'((:name "Id" :width 16 :template "{{ json .ID }}" :sort nil :format nil)
(:name "Image" :width 15 :template "{{ json .Image }}" :sort nil :format nil)
(:name "Command" :width 30 :template "{{ json .Command }}" :sort nil :format nil)
(:name "Created" :width 23 :template "{{ json .CreatedAt }}" :sort nil :format (lambda (x) (format-time-string "%F %T" (date-to-time x))))
(:name "Status" :width 20 :template "{{ json .Status }}" :sort nil :format nil)
(:name "Ports" :width 10 :template "{{ json .Ports }}" :sort nil :format nil)
(:name "Names" :width 10 :template "{{ json .Names }}" :sort nil :format nil))
"Column specification for docker containers.
The order of entries defines the displayed column order. 'Template' is
the Go template passed to `docker-container-ls' to create the column data.
It should return a string delimited with double quotes. 'Sort function' is
a binary predicate that should return true when the first argument should be
sorted before the second. 'Format function' is a function from string to
string that transforms the displayed values in the column."
:group 'docker-container
:set 'docker-utils-columns-setter
:get 'docker-utils-columns-getter
:type '(repeat (list :tag "Column"
(string :tag "Name")
(integer :tag "Width")
(string :tag "Template")
(sexp :tag "Sort function")
(sexp :tag "Format function"))))
(defalias 'docker-container-inspect 'docker-inspect)
(defun docker-container--read-shell (&optional read-shell-name)
"Return `docker-container-shell-file-name' or read a shell name if READ-SHELL-NAME is truthy."
(if read-shell-name (read-shell-command "Shell: ") docker-container-shell-file-name))
(defun docker-container-status-face (status)
"Return the correct face according to STATUS."
(cond
((s-starts-with? "Up" status)
'docker-face-status-up)
((s-starts-with? "Exited" status)
'docker-face-status-down)
(t
'docker-face-status-other)))
(aio-defun docker-container-entries (&rest args)
"Return the docker containers data for `tabulated-list-entries'."
(let* ((fmt (docker-utils-make-format-string docker-container-id-template docker-container-columns))
(data (aio-await (docker-run-docker-async "container" "ls" args (format "--format=\"%s\"" fmt))))
(lines (s-split "\n" data t)))
(-map (-partial #'docker-utils-parse docker-container-columns) lines)))
(aio-defun docker-container-entries-propertized (&rest args)
"Return the propertized docker containers data for `tabulated-list-entries'."
(let ((entries (aio-await (docker-container-entries args))))
(-map #'docker-container-propertize-entry entries)))
(defun docker-container-propertize-entry (entry)
"Propertize ENTRY."
(let* ((index (--find-index (string-equal "Status" (plist-get it :name)) docker-container-columns))
(data (cadr entry))
(status (aref data index)))
(aset data index (propertize status 'font-lock-face (docker-container-status-face status)))
entry))
(aio-defun docker-container-update-status-async ()
"Write the status to `docker-status-strings'."
(plist-put docker-status-strings :containers "Containers")
(when docker-show-status
(let* ((entries (aio-await (docker-container-entries-propertized (docker-container-ls-arguments))))
(index (--find-index (string-equal "Status" (plist-get it :name)) docker-container-columns))
(statuses (--map (aref (cadr it) index) entries))
(faces (--map (get-text-property 0 'font-lock-face it) statuses))
(all (length faces))
(up (-count (-partial #'equal 'docker-face-status-up) faces))
(down (-count (-partial #'equal 'docker-face-status-down) faces))
(other (- all up down)))
(plist-put docker-status-strings
:containers
(format "Containers (%s total, %s up, %s down, %s other)"
all
(propertize (number-to-string up) 'face 'docker-face-status-up)
(propertize (number-to-string down) 'face 'docker-face-status-down)
(propertize (number-to-string other) 'face 'docker-face-status-other)))
(transient--redisplay))))
(add-hook 'docker-open-hook #'docker-container-update-status-async)
(aio-defun docker-container-refresh ()
"Refresh the containers list."
(docker-utils-refresh-entries
(docker-container-entries-propertized (docker-container-ls-arguments))))
(defun docker-container-read-name ()
"Read an container name."
(completing-read "Container: " (-map #'car (aio-wait-for (docker-container-entries)))))
(defvar eshell-buffer-name)
;;;###autoload (autoload 'docker-container-eshell "docker-container" nil t)
(defun docker-container-eshell (container)
"Open `eshell' in CONTAINER."
(interactive (list (docker-container-read-name)))
(let* ((container-address (format "docker:%s:/" container))
(file-prefix (let ((prefix (file-remote-p default-directory)))
(if prefix
(format "%s|" (s-chop-suffix ":" prefix))
"/")))
(default-directory (format "%s%s" file-prefix container-address))
(eshell-buffer-name (docker-utils-generate-new-buffer-name "docker" "eshell:" default-directory)))
(eshell)))
(defun docker-container-assert-tramp-docker ()
"Assert tramp docker support is available."
(unless (or (docker-utils-package-p 'docker-container)
(docker-utils-package-p 'docker-tramp))
(error "tramp docker support was not detected, try installing docker-tramp")))
;;;###autoload (autoload 'docker-container-find-directory "docker-container" nil t)
(defun docker-container-find-directory (container directory)
"Inside CONTAINER open DIRECTORY."
(interactive
(let* ((container-name (docker-container-read-name))
(tramp-filename (read-directory-name "Directory: " (format "/docker:%s:/" container-name))))
(with-parsed-tramp-file-name tramp-filename nil
(list host localname))))
(docker-container-assert-tramp-docker)
(dired (format "/docker:%s:%s" container directory)))
(defalias 'docker-container-dired 'docker-container-find-directory)
;;;###autoload (autoload 'docker-container-find-file "docker-container" nil t)
(defun docker-container-find-file (container file)
"Open FILE inside CONTAINER."
(interactive
(let* ((container-name (docker-container-read-name))
(tramp-filename (read-file-name "File: " (format "/docker:%s:/" container-name))))
(with-parsed-tramp-file-name tramp-filename nil
(list host localname))))
(docker-container-assert-tramp-docker)
(find-file (format "/docker:%s:%s" container file)))
;;;###autoload (autoload 'docker-container-shell "docker-container" nil t)
(defun docker-container-shell (container &optional read-shell)
"Open `shell' in CONTAINER. When READ-SHELL is not nil, ask the user for it."
(interactive (list
(docker-container-read-name)
current-prefix-arg))
(let* ((shell-file-name (docker-container--read-shell read-shell))
(container-address (format "docker:%s:/" container))
(file-prefix (let ((prefix (file-remote-p default-directory)))
(if prefix
(format "%s|" (s-chop-suffix ":" prefix))
"/")))
(default-directory (format "%s%s" file-prefix container-address)))
(shell (docker-utils-generate-new-buffer "docker" "shell:" default-directory))))
;;;###autoload (autoload 'docker-container-shell-env "docker-container" nil t)
(aio-defun docker-container-shell-env (container &optional read-shell)
"Open `shell' in CONTAINER with the environment variable set
and default directory set to workdir. When READ-SHELL is not
nil, ask the user for it."
(interactive (list
(docker-container-read-name)
current-prefix-arg))
(docker-container-assert-tramp-docker)
(let* ((shell-file-name (docker-container--read-shell read-shell))
(container-address (format "docker:%s:" container))
(file-prefix (let ((prefix (file-remote-p default-directory)))
(if prefix
(format "%s|" (s-chop-suffix ":" prefix))
"/")))
(container-config (cdr (assq 'Config (aref (json-read-from-string (aio-await (docker-run-docker-async "inspect" container))) 0))))
(container-workdir (cdr (assq 'WorkingDir container-config)))
(container-env (cdr (assq 'Env container-config)))
(default-directory (format "%s%s%s" file-prefix container-address container-workdir))
;; process-environment doesn't work with tramp if you call this function more than one per emacs session
(tramp-remote-process-environment (append container-env nil)))
(shell (docker-utils-generate-new-buffer "docker" "shell-env:" default-directory))))
;;;###autoload (autoload 'docker-container-vterm "docker-container" nil t)
(defun docker-container-vterm (container)
"Open `vterm' in CONTAINER."
(interactive (list (docker-container-read-name)))
(if (fboundp 'vterm-other-window)
(let* ((container-address (format "docker:%s:/" container))
(file-prefix (let ((prefix (file-remote-p default-directory)))
(if prefix
(format "%s|" (s-chop-suffix ":" prefix))
"/")))
(default-directory (format "%s%s" file-prefix container-address)))
(vterm-other-window (docker-utils-generate-new-buffer-name "docker" "vterm:" default-directory)))
(error "The vterm package is not installed")))
;;;###autoload (autoload 'docker-container-vterm-env "docker-container" nil t)
(aio-defun docker-container-vterm-env (container)
"Open `vterm' in CONTAINER with the environment variable set and
default directory set to workdir."
(interactive (list
(docker-container-read-name)))
(docker-container-assert-tramp-docker)
(let* ((container-address (format "docker:%s:" container))
(file-prefix (let ((prefix (file-remote-p default-directory)))
(if prefix
(format "%s|" (s-chop-suffix ":" prefix))
"/")))
(container-config (cdr (assq 'Config (aref (json-read-from-string (aio-await (docker-run-docker-async "inspect" container))) 0))))
(container-workdir (cdr (assq 'WorkingDir container-config)))
(container-env (cdr (assq 'Env container-config)))
(default-directory (format "%s%s%s" file-prefix container-address container-workdir))
;; process-environment doesn't work with tramp if you call this function more than one per emacs session
(tramp-remote-process-environment (append container-env nil)))
(if (fboundp 'vterm-other-window)
(vterm-other-window (docker-utils-generate-new-buffer-name "docker" "vterm-env:" default-directory))
(error "The vterm package is not installed"))))
(defvar eat-buffer-name)
;;;###autoload (autoload 'docker-container-eat "docker-container" nil t)
(defun docker-container-eat (container)
"Open `eat' in CONTAINER."
(interactive (list (docker-container-read-name)))
(if (fboundp 'eat-other-window)
(let* ((container-address (format "docker:%s:/" container))
(file-prefix (let ((prefix (file-remote-p default-directory)))
(if prefix
(format "%s|" (s-chop-suffix ":" prefix))
"/")))
(default-directory (format "%s%s" file-prefix container-address))
(eat-buffer-name (format "*eat:%s" default-directory)))
(eat-other-window))
(error "The eat package is not installed")))
;;;###autoload (autoload 'docker-container-eat-env "docker-container" nil t)
(aio-defun docker-container-eat-env (container)
"Open `eat' in CONTAINER with the environment variable set and
default directory set to workdir."
(interactive (list
(docker-container-read-name)))
(docker-container-assert-tramp-docker)
(let* ((container-address (format "docker:%s:" container))
(file-prefix (let ((prefix (file-remote-p default-directory)))
(if prefix
(format "%s|" (s-chop-suffix ":" prefix))
"/")))
(container-config (cdr (assq 'Config (aref (json-read-from-string (aio-await (docker-run-docker-async "inspect" container))) 0))))
(container-workdir (cdr (assq 'WorkingDir container-config)))
(container-env (cdr (assq 'Env container-config)))
(default-directory (format "%s%s%s" file-prefix container-address container-workdir))
;; process-environment doesn't work with tramp if you call this function more than one per emacs session
(tramp-remote-process-environment (append container-env nil))
(eat-buffer-name (format "*eat-env:%s" default-directory)))
(if (fboundp 'eat-other-window)
(eat-other-window)
(error "The eat package is not installed"))))
(defun docker-container-cp-from-selection (container-path host-path)
"Run \"docker cp\" from CONTAINER-PATH to HOST-PATH for selected container."
(interactive "sContainer path: \nFHost path: ")
(docker-utils-ensure-items)
(--each (docker-utils-get-marked-items-ids)
(docker-run-docker-async "cp" (concat it ":" container-path) host-path)))
(defun docker-container-cp-to-selection (host-path container-path)
"Run \"docker cp\" from HOST-PATH to CONTAINER-PATH for selected containers."
(interactive "fHost path: \nsContainer path: ")
(docker-utils-ensure-items)
(--each (docker-utils-get-marked-items-ids)
(docker-run-docker-async "cp" host-path (concat it ":" container-path))))
(defun docker-container-eshell-selection ()
"Run `docker-container-eshell' on the containers selection."
(interactive)
(docker-utils-ensure-items)
(--each (docker-utils-get-marked-items-ids)
(docker-container-eshell it)))
(defun docker-container-find-directory-selection (path)
"Run `docker-container-find-directory' for PATH on the containers selection."
(interactive "sPath: ")
(docker-utils-ensure-items)
(--each (docker-utils-get-marked-items-ids)
(docker-container-find-directory it path)))
(defun docker-container-find-file-selection (path)
"Run `docker-container-find-file' for PATH on the containers selection."
(interactive "sPath: ")
(docker-utils-ensure-items)
(--each (docker-utils-get-marked-items-ids)
(docker-container-find-file it path)))
(aio-defun docker-container-rename-selection ()
"Rename containers."
(interactive)
(docker-utils-ensure-items)
(--each (docker-utils-get-marked-items-ids)
(aio-await (docker-run-docker-async "rename" it (read-string (format "Rename \"%s\" to: " it)))))
(tablist-revert))
(defun docker-container-shell-selection (prefix)
"Run `docker-container-shell' on the containers selection forwarding PREFIX."
(interactive "P")
(docker-utils-ensure-items)
(--each (docker-utils-get-marked-items-ids)
(docker-container-shell it prefix)))
(defun docker-container-shell-env-selection (prefix)
"Run `docker-container-shell-env' on the containers selection forwarding PREFIX."
(interactive "P")
(docker-utils-ensure-items)
(--each (docker-utils-get-marked-items-ids)
(docker-container-shell-env it prefix)))
(defun docker-container-vterm-selection ()
"Run `docker-container-vterm' on the containers selection."
(interactive)
(docker-utils-ensure-items)
(--each (docker-utils-get-marked-items-ids)
(docker-container-vterm it)))
(defun docker-container-vterm-env-selection ()
"Run `docker-container-vterm-env' on the containers selection."
(interactive)
(docker-utils-ensure-items)
(--each (docker-utils-get-marked-items-ids)
(docker-container-vterm-env it)))
(defun docker-container-shell-command (container)
"Run exec of a CONTAINER."
(interactive (list (docker-container-read-name)))
(shell-command (read-shell-command "Run: " (format "docker exec %s " container))))
(defun docker-container-shell-command-selection ()
"Run `docker exec' on the containers selection."
(interactive)
(docker-utils-ensure-items)
(--each (docker-utils-get-marked-items-ids)
(docker-container-shell-command it)))
(defun docker-container-eat-selection ()
"Run `docker-container-eat' on the containers selection."
(interactive)
(docker-utils-ensure-items)
(--each (docker-utils-get-marked-items-ids)
(docker-container-eat it)))
(defun docker-container-eat-env-selection ()
"Run `docker-container-eat-env' on the containers selection."
(interactive)
(docker-utils-ensure-items)
(--each (docker-utils-get-marked-items-ids)
(docker-container-eat-env it)))
(docker-utils-transient-define-prefix docker-container-attach ()
"Transient for attaching to containers."
:man-page "docker-container-attach"
["Arguments"
("n" "No STDIN" "--no-stdin")
("d" "Key sequence for detaching" "--detach-keys " read-string)]
[:description docker-generic-action-description
("a" "Attach" docker-generic-action-with-buffer)])
(docker-utils-transient-define-prefix docker-container-cp ()
"Transient for copying files from/to containers."
:man-page "docker-container-cp"
[:description docker-generic-action-description
("f" "Copy From" docker-container-cp-from-selection)
("t" "Copy To" docker-container-cp-to-selection)])
(docker-utils-transient-define-prefix docker-container-diff ()
"Transient for showing containers diffs."
:man-page "docker-container-diff"
[:description docker-generic-action-description
("d" "Diff" docker-generic-action-with-buffer)])
(docker-utils-transient-define-prefix docker-container-open ()
"Transient for opening containers files."
[:description docker-generic-action-description
("d" "Open directory" docker-container-find-directory-selection)
("f" "Open file" docker-container-find-file-selection)])
(docker-utils-transient-define-prefix docker-container-kill ()
"Transient for kill signaling containers"
:man-page "docker-container-kill"
["Arguments"
("s" "Signal" "-s " read-string)]
[:description docker-generic-action-description
("K" "Kill" docker-generic-action-multiple-ids)])
(docker-utils-transient-define-prefix docker-container-logs ()
"Transient for showing containers logs."
:man-page "docker-container-logs"
["Arguments"
("f" "Follow" "-f")
("s" "Since" "--since " read-string)
("t" "Tail" "--tail " read-string)
("u" "Until" "--until " read-string)]
[:description docker-generic-action-description
("L" "Logs" docker-generic-action-with-buffer)])
(docker-utils-define-transient-arguments docker-container-ls)
(transient-define-prefix docker-container-ls ()
"Transient for listing containers."
:man-page "docker-container-ls"
:value '("--all")
["Arguments"
("N" "Last" "--last " transient-read-number-N0)
("a" "All" "--all")
("e" "Exited containers" "--filter status=exited")
("f" "Filter" "--filter " read-string)
("n" "Don't truncate" "--no-trunc")]
["Actions"
("l" "List" tablist-revert)])
(docker-utils-transient-define-prefix docker-container-pause ()
"Transient for pausing containers."
:man-page "docker-container-pause"
[:description docker-generic-action-description
("P" "Pause" docker-generic-action-multiple-ids)])
(docker-utils-transient-define-prefix docker-container-unpause ()
"Transient for pausing containers."
:man-page "docker-container-unpause"
[:description docker-generic-action-description
("N" "Unpause" docker-generic-action-multiple-ids)])
(docker-utils-transient-define-prefix docker-container-restart ()
"Transient for restarting containers."
:man-page "docker-container-restart"
["Arguments"
("t" "Timeout" "-t " transient-read-number-N0)]
[:description docker-generic-action-description
("R" "Restart" docker-generic-action-multiple-ids)])
(docker-utils-transient-define-prefix docker-container-rm ()
"Transient for removing containers."
:man-page "docker-container-rm"
["Arguments"
("f" "Force" "-f")
("v" "Volumes" "-v")]
[:description docker-generic-action-description
("D" "Remove" docker-generic-action-multiple-ids)])
(docker-utils-transient-define-prefix docker-container-shells ()
"Transient for using shells on containers."
[:description docker-generic-action-description
("!" "Shell command" docker-container-shell-command-selection)
("b" "Shell" docker-container-shell-selection)
("B" "Shell with env" docker-container-shell-env-selection)
("e" "Eshell" docker-container-eshell-selection)
("v" "Vterm" docker-container-vterm-selection)
("V" "Vterm with env" docker-container-vterm-env-selection)
("a" "Eat" docker-container-eat-selection)
("A" "Eat with env" docker-container-eat-env-selection)])
(docker-utils-transient-define-prefix docker-container-start ()
"Transient for starting containers."
:man-page "docker-container-start"
[:description docker-generic-action-description
("S" "Start" docker-generic-action-multiple-ids)])
(docker-utils-transient-define-prefix docker-container-stop ()
"Transient for stoping containers."
:man-page "docker-container-stop"
["Arguments"
("t" "Timeout" "-t " transient-read-number-N0)]
[:description docker-generic-action-description
("O" "Stop" docker-generic-action-multiple-ids)])
(transient-define-prefix docker-container-help ()
"Help transient for docker containers."
["Docker Containers"
["Lifecycle"
("K" "Kill" docker-container-kill)
("O" "Stop" docker-container-stop)
("N" "Unpause" docker-container-unpause)
("P" "Pause" docker-container-pause)
("R" "Restart" docker-container-restart)
("S" "Start" docker-container-start)]
["Admin"
("C" "Copy" docker-container-cp)
("D" "Remove" docker-container-rm)
("I" "Inspect" docker-container-inspect)
("L" "Logs" docker-container-logs)
("a" "Attach" docker-container-attach)
("b" "Shell" docker-container-shells)
("d" "Diff" docker-container-diff)
("f" "Find file" docker-container-open)
("l" "List" docker-container-ls)
("r" "Rename" docker-container-rename-selection)]])
(defvar docker-container-mode-map
(let ((map (make-sparse-keymap)))
(define-key map "?" 'docker-container-help)
(define-key map "C" 'docker-container-cp)
(define-key map "D" 'docker-container-rm)
(define-key map "I" 'docker-container-inspect)
(define-key map "K" 'docker-container-kill)
(define-key map "L" 'docker-container-logs)
(define-key map "O" 'docker-container-stop)
(define-key map "N" 'docker-container-unpause)
(define-key map "P" 'docker-container-pause)
(define-key map "R" 'docker-container-restart)
(define-key map "S" 'docker-container-start)
(define-key map "a" 'docker-container-attach)
(define-key map "b" 'docker-container-shells)
(define-key map "d" 'docker-container-diff)
(define-key map "f" 'docker-container-open)
(define-key map "l" 'docker-container-ls)
(define-key map "r" 'docker-container-rename-selection)
map)
"Keymap for `docker-container-mode'.")
;;;###autoload (autoload 'docker-containers "docker-container" nil t)
(defun docker-containers ()
"List docker containers."
(interactive)
(docker-utils-pop-to-buffer "*docker-containers*")
(docker-container-mode)
(tablist-revert))
(define-derived-mode docker-container-mode tabulated-list-mode "Containers Menu"
"Major mode for handling a list of docker containers."
(setq tabulated-list-format (docker-utils-columns-list-format docker-container-columns))
(setq tabulated-list-padding 2)
(setq tabulated-list-sort-key docker-container-default-sort-key)
(add-hook 'tabulated-list-revert-hook 'docker-container-refresh nil t)
(tabulated-list-init-header)
(tablist-minor-mode))
(provide 'docker-container)
;;; docker-container.el ends here