forked from extern/podman-compose
22 lines
440 B
YAML
22 lines
440 B
YAML
version: "3"
|
|
services:
|
|
too_long:
|
|
image: busybox
|
|
command: ["/bin/busybox", "sh", "-c", "sleep 3600; exit 0"]
|
|
tmpfs:
|
|
- /run
|
|
- /tmp
|
|
sh1:
|
|
image: busybox
|
|
command: ["/bin/busybox", "sh", "-c", "sleep 5; exit 1"]
|
|
tmpfs:
|
|
- /run
|
|
- /tmp
|
|
sh2:
|
|
image: busybox
|
|
command: ["/bin/busybox", "sh", "-c", "sleep 5; exit 2"]
|
|
tmpfs:
|
|
- /run
|
|
- /tmp
|
|
|