You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo "Testing database connection from web container..."
91
87
docker compose exec -T web sh -c 'nc -z db 5432 && echo "✓ Database connection successful"'
92
88
93
89
echo "Testing Redis connection from web container..."
94
90
docker compose exec -T web sh -c 'nc -z redis 6379 && echo "✓ Redis connection successful"'
95
91
96
-
# Test that web service can start (basic health check)
97
92
echo "Testing web service startup..."
98
93
timeout 30 bash -c 'until curl -f http://localhost:3000 2>/dev/null || curl -f http://localhost:3000/health 2>/dev/null; do sleep 2; done' || echo "Web service may not have health endpoint, continuing..."
99
94
@@ -106,7 +101,7 @@ jobs:
106
101
docker compose run --rm runner sh -c 'nc -z redis 6379 && echo "✓ Runner -> Redis connection successful"'
107
102
docker compose run --rm runner sh -c 'nc -z web 3000 && echo "✓ Runner -> Web service connection successful"'
108
103
109
-
- name: Verify Docker socket access
104
+
- name: Test Docker socket access
110
105
run: |
111
106
cd packages/evals
112
107
@@ -129,7 +124,7 @@ jobs:
129
124
docker compose exec -T db sh -c 'echo "Database container hostname: $(hostname)"'
0 commit comments