8 lines
177 B
YAML
8 lines
177 B
YAML
|
|
services:
|
||
|
|
web:
|
||
|
|
image: nginx:latest
|
||
|
|
ports:
|
||
|
|
- "8080:80"
|
||
|
|
volumes:
|
||
|
|
- ./html:/usr/share/nginx/html # 将当前目录下的 html 文件夹映射到容器内
|