spacemacs/layers/+tools/docker
Kristoffer Haugsbakk 79ed1a6b4b Use proper markup for code in readmes
By convention, code markup (`~`) is reserved for keybindings in Org-based
documentation in Spacemacs.  Verbatim markup (`=`) is reserved for code and
other code-like things.  So change several readmes to reflect this convention.

Use verbatim markup for things like (non-exhaustive list):

- Emacs Lisp functions, modes, buffers, etc.
- Environment variables
- Directory paths
- Code in general
2017-05-24 11:57:17 +02:00
..
img Rename dockerfile layer to docker 2016-06-09 23:53:33 -04:00
packages.el Bump year in copyright headers 2017-01-05 23:08:17 -05:00
README.org Use proper markup for code in readmes 2017-05-24 11:57:17 +02:00

Docker layer

/TakeV/spacemacs/media/commit/79ed1a6b4bded576432b30ca4ed53612738b9751/layers/+tools/docker/img/docker.png

Description

This layer provides syntax highlighting and build functionality for Docker files as well as TRAMP access to running docker containers.

It also includes basic Docker container and image management provided by docker.el.

Install

To use this configuration layer, add it to your ~/.spacemacs. You will need to add docker to the existing dotspacemacs-configuration-layers list in this file.

Usage

TRAMP access to docker containers

This relies on the docker-tramp package which uses docker exec available in docker versions > 1.3.

docker-tramp adds a new prefix /docker: that you can use with SPC f f, this prefix allows to acces your docker containers and also provides auto-completion of the running containers.

Key bindings

Key Binding Description
SPC m c b build current buffer via dockerfile-build-buffer
SPC D c list docker containers
SPC D d delete image
SPC D e unpause container
SPC D F pull image
SPC D i list docker images
SPC D k delete container
SPC D o stop container
SPC D p pause container
SPC D P push image
SPC D r restart container
SPC D s start container