Initial commit

This commit is contained in:
2022-06-02 08:05:25 +02:00
commit dfbbc0ee5f
316 changed files with 151609 additions and 0 deletions
+40
View File
@@ -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"
}