summaryrefslogtreecommitdiff
path: root/docs/sources/userguide/dockervolumes.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/sources/userguide/dockervolumes.md')
-rw-r--r--docs/sources/userguide/dockervolumes.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/sources/userguide/dockervolumes.md b/docs/sources/userguide/dockervolumes.md
index 42b01ecf8b..97593a1e04 100644
--- a/docs/sources/userguide/dockervolumes.md
+++ b/docs/sources/userguide/dockervolumes.md
@@ -131,14 +131,14 @@ like so:
$ sudo docker run --volumes-from dbdata -v $(pwd):/backup ubuntu tar cvf /backup/backup.tar /dbdata
-Here's we've launched a new container and mounted the volume from the
+Here we've launched a new container and mounted the volume from the
`dbdata` container. We've then mounted a local host directory as
`/backup`. Finally, we've passed a command that uses `tar` to backup the
contents of the `dbdata` volume to a `backup.tar` file inside our
`/backup` directory. When the command completes and the container stops
we'll be left with a backup of our `dbdata` volume.
-You could then to restore to the same container, or another that you've made
+You could then restore it to the same container, or another that you've made
elsewhere. Create a new container.
$ sudo docker run -v /dbdata --name dbdata2 ubuntu /bin/bash