From d7b8ada736f0ead526761ce5ee85187ba0b8de64 Mon Sep 17 00:00:00 2001 From: Atiab Bin Zakaria <61742543+atiabbz@users.noreply.github.com> Date: Mon, 13 Jun 2022 23:19:11 +0800 Subject: [PATCH] Replace backtick with apostrophe in `/storage/volumes.md` (#14930) --- storage/volumes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/volumes.md b/storage/volumes.md index 2389740d7f..0fd5310696 100644 --- a/storage/volumes.md +++ b/storage/volumes.md @@ -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 container’s data volume: ```console $ docker run --rm --volumes-from dbstore2 -v $(pwd):/backup ubuntu bash -c "cd /dbdata && tar xvf /backup/backup.tar --strip 1"