Replace backtick with apostrophe in `/storage/volumes.md` (#14930)

This commit is contained in:
Atiab Bin Zakaria 2022-06-13 23:19:11 +08:00 committed by GitHub
parent 2726924ba5
commit d7b8ada736
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -551,7 +551,7 @@ For example, create a new container named `dbstore2`:
$ docker run -v /dbdata --name dbstore2 ubuntu /bin/bash
```
Then un-tar the backup file in the new container`s data volume:
Then un-tar the backup file in the new containers data volume:
```console
$ docker run --rm --volumes-from dbstore2 -v $(pwd):/backup ubuntu bash -c "cd /dbdata && tar xvf /backup/backup.tar --strip 1"