From 87a8a5843a958f09826a738e0a70978f93e11a86 Mon Sep 17 00:00:00 2001 From: Frank B Greco Jr Date: Fri, 21 Apr 2017 10:57:36 -0500 Subject: [PATCH] updating outdated plugin (#2907) * updating outdated plugin * Update dockervolumes.md --- engine/tutorials/dockervolumes.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/engine/tutorials/dockervolumes.md b/engine/tutorials/dockervolumes.md index fb3c0ed489..134bda5033 100644 --- a/engine/tutorials/dockervolumes.md +++ b/engine/tutorials/dockervolumes.md @@ -174,15 +174,15 @@ Volume drivers create volumes by name, instead of by path like in the other examples. The following command creates a named volume, called `my-named-volume`, -using the `flocker` volume driver (`flocker` is a plugin for multi-host portable volumes) +using the `convoy` volume driver (`convoy` is a plugin for a variety of storage back-ends) and makes it available within the container at `/webapp`. Before running the command, -[install flocker](https://flocker-docs.clusterhq.com/en/latest/docker-integration/manual-install.html). -If you do not want to install `flocker`, replace `flocker` with `local` in the example commands +[install and configure convoy](https://github.com/rancher/convoy#quick-start-guide). +If you do not want to install `convoy`, replace `convoy` with `local` in the example commands below to use the `local` driver. ```bash $ docker run -d -P \ - --volume-driver=flocker \ + --volume-driver=convoy \ -v my-named-volume:/webapp \ --name web training/webapp python app.py ``` @@ -195,7 +195,7 @@ using the `docker volume create` command. Options are specified as key-value pairs in the format `o==`. ```bash -$ docker volume create -d flocker --opt o=size=20GB my-named-volume +$ docker volume create -d convoy --opt o=size=20GB my-named-volume $ docker run -d -P \ -v my-named-volume:/webapp \