We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e327a2 commit 9a74157Copy full SHA for 9a74157
tools/docker/run.ps1
@@ -5,6 +5,7 @@ if (-not $ARDUINO_DIR) {
5
6
$ARDUINO_DIR = (Get-Item -Path $ARDUINO_DIR).FullName
7
$DOCKER_ARGS = @()
8
+$DOCKER_ARGS += '-it'
9
$DOCKER_ARGS += '-v', "$ARDUINO_DIR:/arduino-esp32"
10
$DOCKER_ARGS += '-e', 'TERM=xterm-256color'
11
$DOCKER_ARGS += '-e', "HOST_UID=$env:UID"
tools/docker/run.sh
@@ -4,6 +4,7 @@ ARDUINO_DIR=${1:-$PWD/../}
4
DOCKER_ARGS=()
ARDUINO_DIR=$(echo $(cd $ARDUINO_DIR; pwd))
+DOCKER_ARGS+=(-it)
DOCKER_ARGS+=(-v $ARDUINO_DIR:/arduino-esp32)
DOCKER_ARGS+=(-e TERM=xterm-256color)
DOCKER_ARGS+=(-e HOST_UID=$UID)
0 commit comments