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