Docker's docker inspect
gives me some metadata about a container, like:
"Mounts": [
{
"Type": "bind",
"Source": "/home/ondra/work/CI-CD/volumes/jenkins_home",
"Destination": "/var/jenkins_home",
"Mode": "",
"RW": true,
"Propagation": "rprivate"
},
It's quite tempting for me to manipulate these values but I haven't found a way to.
Are these metadata generated on the fly? Or is there a way (an API perhaps?) to change those?