mirror of
https://github.com/containers/podman-compose.git
synced 2024-12-01 12:23:31 +01:00
18472b53ac
Signed-off-by: Povilas Kanapickas <povilas@radix.lt>
15 lines
270 B
YAML
15 lines
270 B
YAML
version: "3"
|
|
services:
|
|
web1:
|
|
image: busybox
|
|
command: httpd -f -p 80 -h /var/www/html
|
|
volumes:
|
|
- type: bind
|
|
source: ./docker-compose.yml
|
|
target: /var/www/html/index.html
|
|
bind:
|
|
selinux: z
|
|
ports:
|
|
- "8080:80"
|
|
|