fix problem during volumes copy
The copied volume (destination) was created but was empty at the end of the process. In order to fix it, I had to remove the second argument of the cp command.pull/4/head
rodzic
23db7997b1
commit
09b32a0ee9
|
@ -47,4 +47,4 @@ docker run --rm \
|
|||
-t \
|
||||
-v $1:/from \
|
||||
-v $2:/to \
|
||||
alpine ash -c "cd /to ; cp -a /from/* /from/.* ."
|
||||
alpine ash -c "cd /to ; cp -a /from/* ."
|
||||
|
|
Ładowanie…
Reference in New Issue