mirror of
https://github.com/containers/podman-compose.git
synced 2024-11-23 08:23:42 +01:00
8d8df0bc28
Signed-off-by: Dixon Whitmire <dixonwh@gmail.com>
24 lines
565 B
YAML
24 lines
565 B
YAML
version: "3"
|
|
services:
|
|
default-service:
|
|
image: busybox
|
|
command: ["/bin/busybox", "httpd", "-f", "-h", "/etc/", "-p", "8000"]
|
|
tmpfs:
|
|
- /run
|
|
- /tmp
|
|
service-1:
|
|
image: busybox
|
|
command: ["/bin/busybox", "httpd", "-f", "-h", "/etc/", "-p", "8000"]
|
|
tmpfs:
|
|
- /run
|
|
- /tmp
|
|
profiles:
|
|
- profile-1
|
|
service-2:
|
|
image: busybox
|
|
command: ["/bin/busybox", "httpd", "-f", "-h", "/etc/", "-p", "8000"]
|
|
tmpfs:
|
|
- /run
|
|
- /tmp
|
|
profiles:
|
|
- profile-2 |