问题描述
我正在使用。在此配置中,驱动程序的含义是什么:顶级卷中的本地卷?
I'm making some docker-compose yml file with this link. In this config, What does meaning of driver: local in top-level volumes?
volumes:
esdata1:
driver: local
esdata2:
driver: local
推荐答案
它是卷驱动程序,相当于
It's volume driver, equivalent to
docker volume create --driver local --name esdata1
docker volume create --driver local --name esdata2
local
表示esdata1和esdata2卷是在运行容器的同一Docker主机上创建的。
通过使用其他Volume插件,例如
local
means the volumes esdata1 and esdata2 are created on the same Docker host where you run your container.By using other Volume plugins, e.g.,
--driver=flocker
您可以在外部主机上创建卷并将其装入本地主机,例如 / data-路径
。因此,当您的容器写入 / data-path
时,它实际上是通过网络写入外部磁盘的。
you are able to create a volume on a external host and mount it to the local host, say, /data-path
. So, when your container writes to /data-path
, it actually writes to a external disk via network.
请参阅以获取可用的某些Volume插件
Refer here for some sort of Volume plugins available
这篇关于Docker-compose-卷驱动程序本地含义的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!