mirror of
https://github.com/docker/compose.git
synced 2025-09-02 07:28:13 +02:00
10 lines
186 B
YAML
10 lines
186 B
YAML
services:
|
|
sample:
|
|
image: nginx
|
|
volumes:
|
|
- data:/data
|
|
pre_stop:
|
|
- command: sh -c 'echo "In the pre-stop" >> /data/log.txt'
|
|
volumes:
|
|
data:
|
|
name: sample-data |