occlum/etc/template/Occlum.json

40 lines
750 B
JSON

{
"vm": {
"user_space_size": "256MB"
},
"process": {
"default_stack_size": "4MB",
"default_heap_size": "32MB",
"default_mmap_size": "80MB"
},
"env": [
"OCCLUM=yes"
],
"entry_points": [
"/bin"
],
"mount": [
{
"target": "/",
"type": "sefs",
"source": "./image",
"options": {
"integrity_only": true
}
},
{
"target": "/root",
"type": "sefs"
},
{
"target": "/host",
"type": "hostfs",
"source": "."
},
{
"target": "/tmp",
"type": "ramfs"
}
]
}