mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-01-23 02:36:05 +00:00
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.
6 lines
165 B
YAML
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'
|