test: Set stop_signal to SIGTERM in nginx-based services

The official nginx images set STOPSIGNAL to SIGQUIT which dumps core.
Set it to SIGTERM to avoid dumping core on e2e tests when containers
running "sleep infinity" are stopped.

Signed-off-by: Ricardo Branco <rbranco@suse.de>
This commit is contained in:
Ricardo Branco 2026-06-26 23:55:27 +02:00
parent e87f7b79df
commit 558bb3404e
No known key found for this signature in database

View file

@ -6,6 +6,7 @@ services:
RUN echo "backend_build_marker" > /built
command: sleep infinity
init: true
stop_signal: SIGTERM
frontend:
build:
dockerfile_inline: |
@ -14,6 +15,7 @@ services:
RUN echo "frontend_build_marker" > /built
command: sleep infinity
init: true
stop_signal: SIGTERM
depends_on:
- backend
develop: