chore: update E2E tests workflow to capture logs on cancellation and add shared volume for backend services

This commit is contained in:
Anish Sarkar 2026-05-12 01:35:33 +05:30
parent c052fc9304
commit 315329f344
2 changed files with 9 additions and 2 deletions

View file

@ -109,6 +109,8 @@ services:
environment:
<<: *backend-env
SERVICE_ROLE: api
volumes:
- shared_temp:/shared_tmp
extra_hosts:
- "host.docker.internal:host-gateway"
ports:
@ -147,6 +149,8 @@ services:
environment:
<<: *backend-env
SERVICE_ROLE: worker
volumes:
- shared_temp:/shared_tmp
depends_on:
backend: { condition: service_healthy }
healthcheck:
@ -172,3 +176,6 @@ networks:
# redis stay off this network entirely.
ingress:
driver: bridge
volumes:
shared_temp: