From 64d580f03b8cf660bf90408de9d8cf363f27d2ae Mon Sep 17 00:00:00 2001 From: "hyeongkyu.lee" Date: Wed, 25 Jun 2014 14:53:59 +0900 Subject: [PATCH] Update dockervolumes.md ~~~ kyu@kyu-HP-EliteBook-2570p:~/apps/docker/volume$ docker run -v /dbdata --name dbdata2 ubuntu 2014/06/25 14:17:44 Error response from daemon: No command specified ~~~ Upstream-commit: 9026888b109e6dd1042259ffd9e707d9e5f76d34 Component: engine --- components/engine/docs/sources/userguide/dockervolumes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/engine/docs/sources/userguide/dockervolumes.md b/components/engine/docs/sources/userguide/dockervolumes.md index 7b3494920e..ce82580609 100644 --- a/components/engine/docs/sources/userguide/dockervolumes.md +++ b/components/engine/docs/sources/userguide/dockervolumes.md @@ -122,7 +122,7 @@ 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 elsewhere. Create a new container. - $ sudo docker run -v /dbdata --name dbdata2 ubuntu + $ sudo docker run -v /dbdata --name dbdata2 ubuntu /bin/bash Then un-tar the backup file in the new container's data volume.