mirror of
https://github.com/containers/podman-compose.git
synced 2024-11-25 09:23:31 +01:00
18472b53ac
Signed-off-by: Povilas Kanapickas <povilas@radix.lt>
13 lines
235 B
YAML
13 lines
235 B
YAML
version: "3"
|
|
services:
|
|
web1:
|
|
image: busybox
|
|
command: httpd -f -p 80 -h /var/www/html
|
|
volumes:
|
|
- ./docker-compose.yml:/var/www/html/index.html
|
|
ports:
|
|
- "8080:80"
|
|
security_opt:
|
|
- seccomp:unconfined
|
|
|