mirror of
https://github.com/containers/podman-compose.git
synced 2024-11-23 00:13:25 +01:00
6af7a2d691
Signed-off-by: Povilas Kanapickas <povilas@radix.lt>
22 lines
536 B
YAML
22 lines
536 B
YAML
version: "3"
|
|
services:
|
|
too_long:
|
|
image: nopush/podman-compose-test
|
|
command: ["dumb-init", "/bin/busybox", "sh", "-c", "sleep 3600; exit 0"]
|
|
tmpfs:
|
|
- /run
|
|
- /tmp
|
|
sh1:
|
|
image: nopush/podman-compose-test
|
|
command: ["dumb-init", "/bin/busybox", "sh", "-c", "sleep 1; exit 1"]
|
|
tmpfs:
|
|
- /run
|
|
- /tmp
|
|
sh2:
|
|
image: nopush/podman-compose-test
|
|
command: ["dumb-init", "/bin/busybox", "sh", "-c", "sleep 1; exit 2"]
|
|
tmpfs:
|
|
- /run
|
|
- /tmp
|
|
|