Merge pull request #7280 from knappe/patch-1

Correct Typo In Documentation
This commit is contained in:
Sven Dowideit 2014-07-29 19:15:48 +10:00
Родитель ac3eecf3db 331200cbaa
Коммит 3369b4f6f0
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -131,7 +131,7 @@ 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