fix(ci): optimize docker integration tests with minimal compose #786
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.

Summary
This PR optimizes the Docker Compose integration test workflow by replacing the heavy full-stack
quickstart.shdeployment with a lightweight CI-specific configuration.Fixes #777
Problem
The current workflow
.github/workflows/integration-test-docker.ymlrelies onscripts/quickstart.sh, which triggers a full docker compose launch with 11+ services. This results in:docker pullSolution
Introduce a minimal
docker-compose.ci.ymlthat strips nonessential services and replaces UI-based validation with simple curl health checks.Changes
deploy/docker-compose/docker-compose.ci.ymltools/make/docker.mk.github/workflows/integration-test-docker.ymlBefore vs After
Before (Full Stack - 11+ services)
After (CI Minimal - 3 services)
Removed Services (Not Needed for CI)
New Make Targets
Test Results
✅ CI Workflow Passed: GitHub Actions Run #5
localhost:8080/health)localhost:19000/ready)localhost:8002/health)localhost:8801/v1/chat/completions)Testing
make docker-compose-up-ci