1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #17515 from azurezk/fixdoc

fix doc of volume name conflict
This commit is contained in:
moxiegirl 2015-11-16 09:15:50 -08:00
commit 4b706195d2
2 changed files with 2 additions and 2 deletions

View file

@ -33,7 +33,7 @@ Multiple containers can use the same volume in the same time period. This is use
Volume names must be unique among drivers. This means you cannot use the same volume name with two different drivers. If you attempt this `docker` returns an error:
```
A volume named %s already exists with the %s driver. Choose a different volume name.
A volume named "hello" already exists with the "some-other" driver. Choose a different volume name.
```
If you specify a volume name already in use on the current driver, Docker assumes you want to re-use the existing volume and does not return an error.

View file

@ -917,7 +917,7 @@ var (
// trying to create a volume that has existed using different driver.
ErrorVolumeNameTaken = errcode.Register(errGroup, errcode.ErrorDescriptor{
Value: "VOLUME_NAME_TAKEN",
Message: "A volume name %s already exists with the %s driver. Choose a different volume name.",
Message: "A volume named %q already exists with the %q driver. Choose a different volume name.",
Description: "An attempt to create a volume using a driver but the volume already exists with a different driver",
HTTPStatusCode: http.StatusInternalServerError,
})