compose/pkg/e2e/fixtures/hooks/compose.yaml
Guillaume Lours d219aa66f4 don't fail down cmd if services with pre_stop hook already stopped/removed
Signed-off-by: Guillaume Lours <705411+glours@users.noreply.github.com>
2025-06-27 14:41:52 +02:00

14 lines
261 B
YAML

services:
sample:
image: nginx
volumes:
- data:/data
pre_stop:
- command: sh -c 'echo "In the pre-stop" >> /data/log.txt'
test:
image: nginx
post_start:
- command: sh -c 'echo env'
volumes:
data:
name: sample-data