36 строки
1.0 KiB
YAML
36 строки
1.0 KiB
YAML
version: "3"
|
|
|
|
services:
|
|
yarn-legacy:
|
|
image: app:dev
|
|
env_file: .env
|
|
tty: true
|
|
volumes:
|
|
- ./app:/app
|
|
- media_volume:/app/experimenter/media
|
|
- /app/experimenter/legacy-ui/core/.cache/
|
|
- /app/experimenter/legacy-ui/core/node_modules/
|
|
- /app/experimenter/nimbus-ui/node_modules/
|
|
- /app/experimenter/reporting/reporting-ui/node_modules/
|
|
- /app/experimenter/served/
|
|
- /app/node_modules/
|
|
command: bash -c "yarn workspace @experimenter/core watch"
|
|
|
|
yarn-reporting:
|
|
image: app:dev
|
|
env_file: .env
|
|
tty: true
|
|
volumes:
|
|
- ./app:/app
|
|
- media_volume:/app/experimenter/media
|
|
- /app/experimenter/legacy-ui/core/.cache/
|
|
- /app/experimenter/legacy-ui/core/node_modules/
|
|
- /app/experimenter/nimbus-ui/node_modules/
|
|
- /app/experimenter/reporting/reporting-ui/node_modules/
|
|
- /app/experimenter/served/
|
|
- /app/node_modules/
|
|
command: bash -c "yarn workspace @experimenter/reporting watch"
|
|
|
|
volumes:
|
|
media_volume:
|