mirror of
https://github.com/containers/podman-compose.git
synced 2025-05-17 12:41:00 +02:00
19 lines
416 B
YAML
19 lines
416 B
YAML
version: "3"
|
|
services:
|
|
container1:
|
|
image: busybox
|
|
command: ["busybox", "sleep", "infinity"]
|
|
volumes:
|
|
- type: bind
|
|
source: ./host_test_text.txt
|
|
target: /test_text.txt
|
|
bind:
|
|
selinux: z
|
|
container2:
|
|
image: busybox
|
|
command: ["busybox", "sleep", "infinity"]
|
|
volumes:
|
|
- type: bind
|
|
source: ./host_test_text.txt
|
|
target: /test_text.txt
|