mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-03-02 21:45:14 +01:00
20 lines
595 B
YAML
20 lines
595 B
YAML
# schema version '3' does not support 'extends' keyword anymore
|
|
# https://stackoverflow.com/questions/52587643/how-to-extend-service-in-docker-compose-v3
|
|
|
|
services:
|
|
trezor-user-env-unix:
|
|
image: ghcr.io/trezor/trezor-user-env:e9411ccc936756438d4c60a1ab4d035a4648e6a2
|
|
environment:
|
|
- DISPLAY=$DISPLAY
|
|
- QT_X11_NO_MITSHM=1
|
|
- LOCAL_USER_ID=$LOCAL_USER_ID
|
|
volumes:
|
|
- /tmp/.X11-unix:/tmp/.X11-unix:rw
|
|
|
|
suite-dev:
|
|
container_name: suite-dev
|
|
extends:
|
|
service: suite-base
|
|
file: docker-compose.suite-base.yml
|
|
command: bash -c "yarn suite:dev"
|