mirror of
https://github.com/containers/podman-compose.git
synced 2025-06-05 12:36:47 +02:00
12 lines
398 B
YAML
12 lines
398 B
YAML
version: "3"
|
|
services:
|
|
sh1:
|
|
image: nopush/podman-compose-test
|
|
command: ["dumb-init", "/bin/busybox", "sh", "-c", "sleep 1; exit 0"]
|
|
sh2:
|
|
image: nopush/podman-compose-test
|
|
command: ["dumb-init", "/bin/busybox", "sh", "-c", "sleep 2; exit 0"]
|
|
sh3:
|
|
image: nopush/podman-compose-test
|
|
command: ["dumb-init", "/bin/busybox", "sh", "-c", "sleep 3; exit 0"]
|