mirror of
https://github.com/containers/podman-compose.git
synced 2024-11-26 18:03:43 +01:00
6af7a2d691
Signed-off-by: Povilas Kanapickas <povilas@radix.lt>
25 lines
662 B
YAML
25 lines
662 B
YAML
version: "3"
|
|
services:
|
|
default-service:
|
|
image: nopush/podman-compose-test
|
|
command: ["dumb-init", "/bin/busybox", "httpd", "-f", "-h", "/etc/", "-p", "8000"]
|
|
tmpfs:
|
|
- /run
|
|
- /tmp
|
|
service-1:
|
|
image: nopush/podman-compose-test
|
|
command: ["dumb-init", "/bin/busybox", "httpd", "-f", "-h", "/etc/", "-p", "8000"]
|
|
tmpfs:
|
|
- /run
|
|
- /tmp
|
|
profiles:
|
|
- profile-1
|
|
service-2:
|
|
image: nopush/podman-compose-test
|
|
command: ["dumb-init", "/bin/busybox", "httpd", "-f", "-h", "/etc/", "-p", "8000"]
|
|
tmpfs:
|
|
- /run
|
|
- /tmp
|
|
profiles:
|
|
- profile-2
|