Files
objectivefs-docker-volume/config.json
Roman Vaníček 3c55cdd9ee
Some checks failed
continuous-integration/drone/push Build is failing
Missing files.
2023-05-25 00:07:50 +02:00

49 lines
967 B
JSON

{
"description": "ObjectiveFS Volume Driver",
"interface": {
"socket": "objectivefs",
"types": [
"docker.volumedriver/1.0"
]
},
"entrypoint": ["/objectivefs-docker-volume"],
"env": [
{
"name": "ACCESS_KEY",
"value": "",
"settable": [
"value"
]
},
{
"name": "SECRET_KEY",
"value": "",
"settable": [
"value"
]
},
{
"name": "OBJECTIVEFS_LICENSE",
"value": "",
"settable": [
"value"
]
}
],
"network": {
"type": "host"
},
"propagatedMount": "/var/lib/docker-volumes",
"linux": {
"capabilities": [
"CAP_SYS_ADMIN"
],
"devices": [
{
"path": "/dev/fuse"
}
]
}
}