run.bat 425 B

12345678910111213
  1. @REM Copyright (C) 2019 Intel Corporation. All rights reserved.
  2. @REM SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  3. @echo off
  4. set target_name=%1
  5. docker run -it --name=wasm-executor-ctr ^
  6. -v "%cd%":/mnt ^
  7. wasm-debug-server:1.0 ^
  8. /bin/bash -c "./run.sh %target_name%"
  9. @REM stop and remove wasm-executor-ctr
  10. docker stop wasm-executor-ctr && docker rm wasm-executor-ctr