1#!/bin/bash 2 3current_path=$(dirname $0) 4port=45707 5 6## example of running core server 7docker run -it --rm --ipc=host --user sagent \ 8 --security-opt seccomp="$current_path/seccomp_profile.json" \ 9 -p "$port:$port" \ 10 -e DEBUG=1 \ 11 secret-agent node core/start "{\"coreServerPort\":$port}" 12 13