Volumes
{
"id": "myweb",
"tty": true,
"resource": {
"vcpu": 1,
"memory": "128"
},
"containers" : [{
"image": "nginx:latest",
"volumes": [{ # Reference here
"volume": "prod_log",
"path": "/var/log",
"readOnly": false
}]
}],
"volumes": [{ # Definition
"name": "prod_log",
"source": "/var/log/myweb.img",
"format": "raw"
}],
}Last updated