File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2424 repository : scaleapi/scale-agentex
2525 path : scale-agentex
2626
27+ - name : Configure Docker Compose for host networking
28+ run : |
29+ cd scale-agentex/agentex
30+ echo "🔧 Configuring AgentEx container for GitHub Actions networking..."
31+
32+ # Add extra_hosts to agentex service to make host.docker.internal work
33+ # This allows the AgentEx container to reach the GitHub runner host
34+ sed -i '/container_name: agentex/a\ extra_hosts:\n - "host.docker.internal:host-gateway"' docker-compose.yml
35+
36+ echo "✅ Added extra_hosts configuration to agentex service"
37+ echo "🔍 Updated agentex service config:"
38+ grep -A 10 "container_name: agentex" docker-compose.yml || echo "Could not find agentex service"
39+
2740 - name : Navigate to scale-agentex repo
2841 run : |
2942 cd scale-agentex/agentex
You can’t perform that action at this time.
0 commit comments