#!/bin/bash set -e SCRIPT_DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd ) bomfile=${SCRIPT_DIR}/redis.yaml # 1. Init Occlum Workspace rm -rf occlum_instance occlum new occlum_instance cd occlum_instance new_json="$(jq '.resource_limits.user_space_size = "1MB" | .resource_limits.user_space_max_size = "320MB" ' Occlum.json)" && \ echo "${new_json}" > Occlum.json # 2. Copy files into Occlum Workspace and Build rm -rf image copy_bom -f $bomfile --root image --include-dir /opt/occlum/etc/template occlum build # 3. Run redis server occlum run /bin/redis-server --save "" --appendonly no &