mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-02-19 16:22:25 +01:00
20 lines
534 B
YAML
20 lines
534 B
YAML
services:
|
|
electrum-regtest:
|
|
image: ghcr.io/trezor/electrs:latest
|
|
network_mode: bridge # this makes docker reuse existing networks
|
|
|
|
test-run:
|
|
build:
|
|
context: .
|
|
dockerfile: ./suite/Dockerfile
|
|
depends_on:
|
|
- electrum-regtest
|
|
network_mode: service:electrum-regtest
|
|
environment:
|
|
- NODE_ENV=development
|
|
- LOCAL_USER_ID=$LOCAL_USER_ID
|
|
working_dir: /trezor-suite
|
|
command: bash -c "yarn workspace @trezor/blockchain-link test:integration"
|
|
volumes:
|
|
- ../:/trezor-suite
|