mirror of
https://github.com/docker/compose.git
synced 2025-08-16 07:08:14 +02:00
14 lines
261 B
YAML
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 |