11 lines
198 B
YAML
11 lines
198 B
YAML
version: "3.9"
|
|
|
|
services:
|
|
web:
|
|
image: nginx:alpine
|
|
container_name: hello-nginx
|
|
restart: unless-stopped
|
|
ports:
|
|
- "8080:80"
|
|
volumes:
|
|
- ./html:/usr/share/nginx/html:ro |