https://github.com/Silex/docker.el.git
git clone 'git://github.com/Silex/docker.el.git'
THIS PACKAGE IS USABLE BUT UNDER HEAVY DEVELOPMENT
The recommended way to install docker.el is through MELPA.
Use M-x docker-images or M-x docker-containers, then mark/unmark items using the following keybindings:
m
: marku
: unmarkt
: toggle marksU
: unmark allPress ?
to known about available keybindings in order to run actions on these items.
You can also call the API directly.
Running M-x docker-global-mode creates keybindings to the
various docker api. The keymap prefix is C-c d
by default and can be
changed with M-x customize-variable docker-keymap-prefix.
| command | keymap | description | |—————————————————–|——————————————–|——————-| | docker-containers | C-c d c c or C-c d C | list containers | | docker-rm | C-c d c d | delete container | | docker-stop | C-c d c o | stop container | | docker-pause | C-c d c p | pause container | | docker-restart | C-c d c r | restart container | | docker-start | C-c d c s | start container | | docker-unpause | C-c d c u | unpause container | | docker-images | C-c d i i or C-c d I | list images | | docker-rmi | C-c d i d | delete image | | docker-pull | C-c d i f | pull image | | docker-push | C-c d i p | push image | | docker-run | C-c d i r | run image | | dockerfile-build-buffer | C-c d B | Build Dockerfile |
M-x docker-images lists the docker images. After having selected some images, you can do the following actions:
F
: pullP
: pushD
: rmiR
: runRunning M-x docker-containers lists the docker containers. After having selected some containers, you can do the following actions:
S
: startO
: stopP
: pauseU
: unpauseR
: restartD
: rmDeletes a container.
Stops a container.
Pauses a container.
Restarts a container.
Starts a container.
Unpause a container.
Deletes an image.
Pull an image.
Push an image.
Run an image.
See docker-file-mode for more information,
This package is inspired by packages like:
dired
/ ibuffer
for selecting images / containers to operate on.Either as suggestions or as pull requests by opening tickets on the issue tracker.