2022-11-09 18:21:25 +01:00
|
|
|
version: "3"
|
|
|
|
services:
|
|
|
|
default-service:
|
2024-03-08 13:45:22 +01:00
|
|
|
image: nopush/podman-compose-test
|
|
|
|
command: ["dumb-init", "/bin/busybox", "httpd", "-f", "-h", "/etc/", "-p", "8000"]
|
2022-11-09 18:21:25 +01:00
|
|
|
tmpfs:
|
|
|
|
- /run
|
|
|
|
- /tmp
|
|
|
|
service-1:
|
2024-03-08 13:45:22 +01:00
|
|
|
image: nopush/podman-compose-test
|
|
|
|
command: ["dumb-init", "/bin/busybox", "httpd", "-f", "-h", "/etc/", "-p", "8000"]
|
2022-11-09 18:21:25 +01:00
|
|
|
tmpfs:
|
|
|
|
- /run
|
|
|
|
- /tmp
|
|
|
|
profiles:
|
|
|
|
- profile-1
|
|
|
|
service-2:
|
2024-03-08 13:45:22 +01:00
|
|
|
image: nopush/podman-compose-test
|
|
|
|
command: ["dumb-init", "/bin/busybox", "httpd", "-f", "-h", "/etc/", "-p", "8000"]
|
2022-11-09 18:21:25 +01:00
|
|
|
tmpfs:
|
|
|
|
- /run
|
|
|
|
- /tmp
|
|
|
|
profiles:
|
2024-03-08 13:45:22 +01:00
|
|
|
- profile-2
|