summaryrefslogtreecommitdiffstats
path: root/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/test-tools/wamr-ide/VSCode-Extension/resource/scripts/boot_debugger_server.sh
blob: 169fb7e5f430e106d75390c8f30f329b3308490f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

# Copyright (C) 2019 Intel Corporation.  All rights reserved.
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception

set -e

docker run --rm -it --name=wasm-debug-server-ctr \
           -v "$(pwd)":/mnt \
           -p 1234:1234 \
           wasm-debug-server:$2 \
           /bin/bash -c "./debug.sh $1"