We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 84301a8 + 9fc27de commit cd498aeCopy full SHA for cd498ae
scripts/dockerenv.sh
@@ -72,13 +72,15 @@ dockerdev () {
72
$RUNTIME rm "$CONTAINER_NAME"
73
fi
74
75
- # SYS_PTRACE is needed to run address sanitizer
+ # * `SYS_PTRACE` is needed to run address sanitizer
76
+ # * `-p 15423` publishes the default port the simulator listens on
77
$RUNTIME run \
78
--detach \
79
--interactive --tty \
80
--name="$CONTAINER_NAME" \
81
-v "$repo_path":"$MOUNT_DIR" \
82
--cap-add SYS_PTRACE \
83
+ -p 15423:15423 \
84
${CONTAINER_IMAGE}:${CONTAINER_VERSION} bash
85
86
if [ "$RUNTIME" = "docker" ] ; then
0 commit comments