Hi I don't want to bind my /tmp inside the container to my host system.
Currently my config.json was as follows
{
"destination": "/tmp",
"type": "bind",
"source": "/tmp",
"options": ["rbind","rw"]
}
I removed the "type" : "bind" from this node still I see the bindings in the host system. I thought that removal of type:bind will be preventing me to create the bind. Is that not the case here?
{
"destination": "/tmp",
"source": "/tmp",
"options": ["rbind","rw"]
}