boot_debugger_server.bat 448 B

1234567891011121314
  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. docker run -it --name=wasm-debug-server-ctr ^
  5. -v "%cd%":/mnt ^
  6. -p 1234:1234 ^
  7. wasm-debug-server:1.0 ^
  8. /bin/bash -c "./debug.sh %1"
  9. @REM stop and remove wasm-debug-server-container
  10. docker stop wasm-debug-server-ctr>nul 2>nul
  11. docker rm wasm-debug-server-ctr>nul 2>nul