10 lines
153 B
YAML
10 lines
153 B
YAML
version: '3'
|
|
services:
|
|
busybox:
|
|
image: "busybox:latest"
|
|
command: httpd -f -h /www/
|
|
ports:
|
|
- "80:80"
|
|
volumes:
|
|
- "/bin:/www"
|