diff --git a/src/container.rs b/src/container.rs index ea05c92..22676ef 100644 --- a/src/container.rs +++ b/src/container.rs @@ -14,7 +14,11 @@ pub fn deploy_enclave( .collect::>() .join(" "); - info!("Deploying enclave: {:?}", enclave_path); + info!( + "Deploying enclave: {:?} with hratls: {:?}", + enclave_path, hratls_pubkey + ); + // TODO: docker limit resources let docker_deploy_str = format!( r#"docker run -d --name {container_name_uuid} -v {enclave_path}:/enclave_package \ --device /dev/sgx/enclave --device /dev/sgx/provision \