mirror of
https://github.com/containers/podman-compose.git
synced 2024-11-26 18:03:43 +01:00
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
|
|
|