forked from extern/podman-compose
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
|
||
|
|