mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-21 13:39:22 +01:00
14 lines
553 B
YAML
14 lines
553 B
YAML
services:
|
|
playwright:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile.playwright
|
|
network_mode: host
|
|
volumes:
|
|
# Mount the whole frontend/ directory to avoid to a new Docker image being generated each time
|
|
# frontend code changes. Also, this allows frontend/__snapshots__/ to be updated.
|
|
- './frontend:/work/frontend'
|
|
- './playwright:/work/playwright'
|
|
- './playwright-report:/work/playwright-report'
|
|
- './test-results:/work/test-results'
|