File size: 329 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 13 | services:
test-vr:
build:
context: .
dockerfile: ./test-vr/playwright-ct.Dockerfile
ports:
- "9323:9323"
command: >
sh -c "npx playwright show-report /recharts/test-vr/playwright-report --host 0.0.0.0 --port 9323"
volumes:
- ./src:/recharts/src
- ./test-vr:/recharts/test-vr
|