mirror of
https://github.com/containers/podman-compose.git
synced 2024-12-11 17:20:44 +01:00
c6a1c4c432
Not at 100% yet. But upped code coverage significantly and covered major async calls. Signed-off-by: Falmarri <463948+Falmarri@users.noreply.github.com>
26 lines
508 B
YAML
26 lines
508 B
YAML
version: "3.7"
|
|
services:
|
|
web:
|
|
image: busybox
|
|
command: ["/bin/busybox", "httpd", "-f", "-h", "/etc/", "-p", "8000"]
|
|
tmpfs:
|
|
- /run
|
|
- /tmp
|
|
sleep:
|
|
image: busybox
|
|
command: ["/bin/busybox", "sh", "-c", "sleep 3600"]
|
|
depends_on:
|
|
- "web"
|
|
tmpfs:
|
|
- /run
|
|
- /tmp
|
|
sleep2:
|
|
image: busybox
|
|
command: ["/bin/busybox", "sh", "-c", "sleep 3600"]
|
|
depends_on:
|
|
- sleep
|
|
tmpfs:
|
|
- /run
|
|
- /tmp
|
|
|