10 lines
165 B
YAML
10 lines
165 B
YAML
version: "3.9"
|
|
services:
|
|
web:
|
|
image: nginx:alpine
|
|
container_name: hello-world
|
|
ports:
|
|
- "80"
|
|
volumes:
|
|
- ./html:/usr/share/nginx/html:ro
|