forked from LaconicNetwork/kompose
fallback to skip volume mount and log warning when path cannot be resolved, as /sys, /root, /var/lib/docker in e2e TestMultipleContainersInPod directory /data replaced with /data-dir Signed-off-by: jose luis <2064537+sosan@users.noreply.github.com>
17 lines
303 B
YAML
17 lines
303 B
YAML
services:
|
|
busy:
|
|
image: busybox
|
|
ports:
|
|
- "8081:8080"
|
|
- "8026:8025"
|
|
volumes:
|
|
- ./certs:/certs
|
|
- ./auth.txt:/auth.txt
|
|
- ./users.php:/users.php:ro
|
|
command:
|
|
[
|
|
"/bin/sh",
|
|
"-c",
|
|
"cat /auth.txt /users.php /certs/cert1.pem"
|
|
]
|