mirror of https://github.com/docker/compose.git
11 lines
183 B
YAML
11 lines
183 B
YAML
|
simple:
|
||
|
image: busybox:latest
|
||
|
command:
|
||
|
- sh
|
||
|
- '-c'
|
||
|
- |
|
||
|
trap 'exit 0' SIGINT
|
||
|
trap 'exit 1' SIGTERM
|
||
|
while true; do :; done
|
||
|
stop_signal: SIGINT
|