Files
docker-cli/components/engine/daemon
Brian Goff a17ad5db90 Allow normal volume to overwrite in start Binds
Fixes #9981
Allows a volume which was created by docker (ie, in
/var/lib/docker/vfs/dir) to be used as a Bind argument via the container
start API and overwrite an existing volume.

For example:

```bash
docker create -v /foo --name one
docker create -v /foo --name two
```

This allows the volume from `one` to be passed into the container start
API as a bind to `two`, and it will overwrite it.

This was possible before 7107898d5cf0f86dc1c6dab29e9dbdad3edc9411

Signed-off-by: Brian Goff <cpuguy83@gmail.com>
Upstream-commit: 49e1ad49c8fe0a6fbb7cba67cc030ef73125dcc7
Component: engine
2015-02-10 20:46:37 -05:00
..
2015-01-22 07:06:46 +00:00
2014-10-24 15:11:48 -07:00
2015-01-08 20:14:58 +00:00
2015-01-29 14:50:42 -08:00
2014-05-17 17:56:02 +00:00
2014-11-08 00:14:08 +00:00

This directory contains code pertaining to running containers and storing images

Code pertaining to running containers:

  • execdriver
  • networkdriver

Code pertaining to storing images:

  • graphdriver