mirror of
https://github.com/containers/podman-compose.git
synced 2025-01-26 07:49:21 +01:00
9e11c6bfbc
Signed-off-by: Monika Kairaityte <monika@kibit.lt>
16 lines
360 B
YAML
16 lines
360 B
YAML
version: "3"
|
|
services:
|
|
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
|
|
|