Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What are volume driver in docker container

While doing volume mounting in a docker container there is a optional parameter

--volume-driver string Optional volume driver for the container

What is the use of this parameter?

like image 855
sunil Avatar asked Jun 22 '18 06:06

sunil


1 Answers

Volume drivers let you store volumes on remote hosts or cloud providers, to encrypt the contents of volumes, or to add other functionality.

See Docker docs

like image 50
Wassinger Avatar answered Nov 15 '22 05:11

Wassinger