Initial commit
This commit is contained in:
+40
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"description": "iSCSI plugin for Docker",
|
||||
"interface": {
|
||||
"socket": "volume-iscsi.sock",
|
||||
"types": [
|
||||
"docker.volumedriver/1.0"
|
||||
]
|
||||
},
|
||||
"entrypoint": [ "/docker-volume-iscsi" ],
|
||||
"network": {
|
||||
"type": "host"
|
||||
},
|
||||
"linux": {
|
||||
"capabilities": [
|
||||
"CAP_SYS_ADMIN"
|
||||
],
|
||||
"allowAllDevices": true
|
||||
},
|
||||
"mounts": [
|
||||
{
|
||||
"type": "bind",
|
||||
"source": "/var/lib/docker/plugins",
|
||||
"destination": "/var/lib/docker/plugins",
|
||||
"options": ["rbind"]
|
||||
},
|
||||
{
|
||||
"type": "bind",
|
||||
"source": "/",
|
||||
"destination": "/host",
|
||||
"options": ["rbind"]
|
||||
},
|
||||
{
|
||||
"type": "bind",
|
||||
"source": "/dev",
|
||||
"destination": "/dev",
|
||||
"options": ["rbind"]
|
||||
}
|
||||
],
|
||||
"propagatedmount": "/var/lib/docker/volumes"
|
||||
}
|
||||
Reference in New Issue
Block a user