mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-03-03 05:55:03 +01:00
19 lines
430 B
YAML
19 lines
430 B
YAML
services:
|
|
suite-base:
|
|
build:
|
|
context: .
|
|
dockerfile: ./suite/Dockerfile
|
|
network_mode: "host"
|
|
volumes:
|
|
- ..:/usr/src/service
|
|
- ../node_modules:/usr/src/service/node_modules
|
|
environment:
|
|
- NODE_ENV=development
|
|
- LOCAL_USER_ID=$LOCAL_USER_ID
|
|
working_dir: /usr/src/service
|
|
|
|
suite-install:
|
|
extends:
|
|
service: suite-base
|
|
command: bash -c "yarn && yarn build:libs"
|