super-productivity/docker-compose.e2e.yaml
Johannes Millan 781898b572 fix(e2e): use !override to replace ports instead of merge
Docker-compose merges arrays by default, so both port 1900 and 1901
were being mapped. Using !override ensures only port 1901 is used
for e2e tests, allowing them to run alongside the dev server on 1900.
2025-12-18 13:02:52 +01:00

6 lines
165 B
YAML

# Docker Compose override for E2E tests
# Uses port 1901 so tests can run while dev server uses 1900
services:
supersync:
ports: !override
- '1901:1900'