mirror of
https://github.com/containers/podman-compose.git
synced 2024-11-29 19:33:48 +01:00
18472b53ac
Signed-off-by: Povilas Kanapickas <povilas@radix.lt>
26 lines
604 B
YAML
26 lines
604 B
YAML
version: "3.7"
|
|
services:
|
|
web:
|
|
image: nopush/podman-compose-test
|
|
command: ["dumb-init", "/bin/busybox", "httpd", "-f", "-h", "/etc/", "-p", "8000"]
|
|
tmpfs:
|
|
- /run
|
|
- /tmp
|
|
sleep:
|
|
image: nopush/podman-compose-test
|
|
command: ["dumb-init", "/bin/busybox", "sh", "-c", "sleep 3600"]
|
|
depends_on:
|
|
- "web"
|
|
tmpfs:
|
|
- /run
|
|
- /tmp
|
|
sleep2:
|
|
image: nopush/podman-compose-test
|
|
command: ["dumb-init", "/bin/busybox", "sh", "-c", "sleep 3600"]
|
|
depends_on:
|
|
- sleep
|
|
tmpfs:
|
|
- /run
|
|
- /tmp
|
|
|