13 lines
383 B
YAML
13 lines
383 B
YAML
services:
|
|
playwright:
|
|
image: mcr.microsoft.com/playwright:v1.51.0-noble
|
|
working_dir: /repo/deployments/playwright-e2e-docker
|
|
volumes:
|
|
- ../../:/repo
|
|
- /tmp:/tmp
|
|
command: npx playwright test
|
|
environment:
|
|
- CI=true
|
|
- HOME=/root
|
|
# Host networking so localhost:3099/3022/5120/5199 resolve identically to the host.
|
|
network_mode: host
|