docker-spoon
Overview
Spoon creates on demand pairing environments using Docker.
We pair a lot using tmux & emacs / vim and wanted a way to create pairing environments which met a few criteria:
- Would contain all the updates folks have contributed to the dev setup
- Can be created on-demand as needed instead of having dedicated pairing environments and asking who's using what
- Are console based to enable low latency remote pairing
Spoon is intended to make this process as easy as possible.
Why Spoon?
Installation
$ gem install docker-spoon
Configuration
Spoon has a number of options which you probably do not want to have to
specify on the command line every time. The easiest way to set these for
your environment is to add them to ~/.spoonrc. This file is just
parsed as ruby, so you can put all kinds of stuff in here, but the
basics should look something like this:
[:url] = "tcp://192.168.1.3:4243"
[:image] = 'spoon-pairing'
["pre-build-commands"] = [
"cp -rp #{ENV['HOME']}/.chef #{[:builddir]}/chef"
]
All of the options[] parameters should map directly to the long form
of options on the command line. They may be defined as either the
:symbol form or as a string. The limitation is that ruby doesn't
permit a dash in symbols, so when an option has a dash in it, it must be
specified as a string.
You may also specify a different config file with the --config
argument.
Usage
Spoon has 5 major operations it can perform:
- Connect/Create, Connect to an existing spoon container or create a new container
- List, List existing containers
- Network, Show ports forwarded to existing containers
- Build, Build an image for use as a spoon container
- Destroy, Destroy an existing spoon container
Connect/Create
By default when you call spoon with no options it will try to connect to the spoon container that you specify. If that container doesn't exist, spoon will create it for you. Once spoon either creates a container or determines that one already exists it will start an ssh connection to the host. This will shell out to ssh and should honor your ssh configuration locally.
Example (container doesn't exist):
$ spoon fortesting
The `spoon-fortesting` container doesn't exist, creating...
Connecting to `spoon-fortesting`
pairing@dockerhost's password:
Example (container exists):
$ spoon fortesting
Connecting to `spoon-fortesting`
pairing@dockerhost's password:
NOTE: If a container has been stopped due to a machine restart or other reason, spoon will issue a start to the container & then attempt to ssh in.
Options
--url, The url of the Docker API endpoint. This is in the format supported by the docker -H option. This will also read from the environment variableDOCKER_HOSTif this argument is not specified and that env var exists.--image, The image name to use when starting a spoon container.--prefix, The prefix to use for creating, listing & destroying containers.
List
The --list argument will list any containers on the destination Docker
host which have the same prefix as specified by --prefix (default
'spoon-'). Images are listed without the prefix specified so that you
can see only the containers you are interested in.
$ spoon -l
List of available spoon containers:
booger [ Stopped ]
jake [ Running ]
test [ Stopped ]
You can connect to Stopped containers in the same way as Running containers, spoon will re-start them as necessary.
Destroy
The --destroy NAME option will destroy the specified spoon container.
$ spoon -d fortesting
Destroying spoon-fortesting
Done!
Network
The --network NAME option will show the forwarded ports for a spoon
instance. Any ports listed via EXPOSE in your Dockerfile should be
exposed when a spoon container is started. If you are working with
applications in a spoon container you can use this to forward ports &
view what public ports are forwarded for your spoon container.
$ spoon -n jake
22 -> 49213
Build
The --build option will build a docker image from the build directory
specified by --builddir (default '.'). This has the same expectations
as the docker
build
command.
Options
--builddir, This is the directory where the build process will look for a Dockerfile and any content added to the container usingADD.--pre-build-commands, This is a list of commands to run before actually kicking off the build process (see below).
pre-build-commands:
Because docker-spoon is special, we also support running some commands in advance of the build process. This allows for things like copying stuff into the container which you don't want to have committed to the repository. An example of this is that in our environment we need chef credentials inside of our container & we use this mechanism to copy those credentials into the builddir at build time without adding them to our repository containing the Dockerfile.
Here's an example of how we copy our chef configuration into place:
["pre-build-commands"] = [
"cp -rp #{ENV['HOME']}/.chef #{[:builddir]}/chef"
]
Container expectations
When building an image for use with docker-spoon you must build an
image which runs an ssh daemon. An example of a Dockerfile which
creates an image which runs ssh is included in the docker/
directory inside this repository
Contributing
- Fork it ( https://github.com/adnichols/docker-spoon/fork )
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create a new Pull Request