boot_debugger_server.sh 326 B

123456789101112
  1. #!/bin/bash
  2. # Copyright (C) 2019 Intel Corporation. All rights reserved.
  3. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. set -e
  5. docker run --rm -it --name=wasm-debug-server-ctr \
  6. -v "$(pwd)":/mnt \
  7. -p 1234:1234 \
  8. wasm-debug-server:$2 \
  9. /bin/bash -c "./debug.sh $1 $3"