Skip to content

Commit

Permalink
update nitro espresso manifest to use file mounts
Browse files Browse the repository at this point in the history
  • Loading branch information
Sneh1999 committed Dec 1, 2024
1 parent 1cf2c34 commit e41b2f5
Showing 1 changed file with 4 additions and 19 deletions.
23 changes: 4 additions & 19 deletions nitro-espresso.manifest
Original file line number Diff line number Diff line change
@@ -1,21 +1,3 @@
# Nitro Manifest

################################# MOUNT FS ####################################

# General notes:
# - All mount points are mounted using the default 'chroot' type.
# - `path`: names of directories and files in Gramine environment; they may be
# arbitrary but here we mostly reuse host URIs for simplicity (except
# for the first `/lib` mount point).
# - `uri`: names of directories and files on the host, somewhat confusingly
# prepended by the 'file:' keyword.

fs.mounts = [
{ path = "/home/user/.arbitrum/", uri = "file:.arbitrum" }
]

############################### SGX: GENERAL ##################################

sys.enable_sigterm_injection = true
sys.enable_extra_runtime_domain_names_conf = true

Expand All @@ -25,6 +7,9 @@ sgx.edmm_enable = true
sgx.remote_attestation = "dcap"
sys.experimental__enable_flock = true
sgx.use_exinfo = true
fs.mounts = [
{ path = "/home/user/.arbitrum/", uri = "file:/home/user/.arbitrum" }
]

############################# SGX: ALLOWED FILES ###############################
sgx.allowed_files = ["file:/home/user/"]
sgx.allowed_files = ["file:/home/user/.arbitrum", "file:/home/user/kzg10-aztec20-srs-1048584.bin"]

0 comments on commit e41b2f5

Please sign in to comment.