diff --git a/components/cli/docs/extend/config.md b/components/cli/docs/extend/config.md index 221150a07b..e068eaccfa 100644 --- a/components/cli/docs/extend/config.md +++ b/components/cli/docs/extend/config.md @@ -111,6 +111,10 @@ Config provides the base accessible fields for working with V0 plugin format options of the mount. +- **`propagatedMount`** *string* + + path to be mounted as rshared, so that mounts under that path are visible to docker. This is useful for volume plugins. + - **`env`** *PluginEnv array* env of the plugin, struct consisting of the following fields diff --git a/components/cli/docs/extend/plugins_volume.md b/components/cli/docs/extend/plugins_volume.md index b123543f6f..c060bf39b1 100644 --- a/components/cli/docs/extend/plugins_volume.md +++ b/components/cli/docs/extend/plugins_volume.md @@ -22,6 +22,10 @@ beyond the lifetime of a single Engine host. See the ## Changelog +### 1.13.0 + +- If used as part of the v2 plugin architecture, mountpoints that are part of paths returned by plugin have to be mounted under the directory specified by PropagatedMount in the plugin configuration [#26398](https://github.com/docker/docker/pull/26398) + ### 1.12.0 - Add `Status` field to `VolumeDriver.Get` response ([#21006](https://github.com/docker/docker/pull/21006#))