podman-compose/tests/deps/docker-compose.yaml

26 lines
604 B
YAML
Raw Normal View History

2021-11-14 00:37:22 +01:00
version: "3.7"
services:
web:
image: nopush/podman-compose-test
command: ["dumb-init", "/bin/busybox", "httpd", "-f", "-h", "/etc/", "-p", "8000"]
2021-11-14 00:37:22 +01:00
tmpfs:
- /run
- /tmp
sleep:
image: nopush/podman-compose-test
command: ["dumb-init", "/bin/busybox", "sh", "-c", "sleep 3600"]
depends_on:
- "web"
2021-11-14 00:37:22 +01:00
tmpfs:
- /run
- /tmp
sleep2:
image: nopush/podman-compose-test
command: ["dumb-init", "/bin/busybox", "sh", "-c", "sleep 3600"]
2021-11-14 00:37:22 +01:00
depends_on:
- sleep
tmpfs:
- /run
- /tmp