fix: add Docker socket volume for container discovery in E2E tests

This commit is contained in:
GitHub Actions
2026-02-24 20:34:35 +00:00
parent bbaad17e97
commit 2b4f60615f
2 changed files with 4 additions and 0 deletions

View File

@@ -49,6 +49,8 @@ services:
# True tmpfs for E2E test data - fresh on every run, in-memory only
# mode=1777 allows any user to write (container runs as non-root)
- /app/data:size=100M,mode=1777
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro # For container discovery in tests
healthcheck:
test: ["CMD-SHELL", "curl -fsS http://localhost:8080/api/v1/health || exit 1"]
interval: 5s