mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-03-23 23:57:15 +01:00
14 lines
360 B
Bash
Executable File
14 lines
360 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
xhost +
|
|
LOCAL_USER_ID="$(id -u "$USER")"
|
|
export LOCAL_USER_ID
|
|
export TEST_FILE=$1
|
|
export TREZOR_CONNECT_SRC=http://localhost:8088/
|
|
export CORE_IN_POPUP=$CORE_IN_POPUP
|
|
export IS_WEBEXTENSION=$IS_WEBEXTENSION
|
|
export MOBILE=$MOBILE
|
|
|
|
docker compose -f ./docker/docker-compose.connect-popup-test.yml up --build --abort-on-container-exit
|