version: '3.3'
services:
nginx:
image: nginx:latest
environment:
- TZ=Asia/Shanghai
extra_hosts:
- "mainhost:xxxxxx"
ports:
- "80:80"
volumes:
- "./conf/conf.d:/etc/nginx/conf.d"
- "./conf/nginx.conf:/etc/nginx/nginx.conf"
- "./dist:/usr/share/nginx/html"
- "./logs:/var/log/nginx/"
restart: always
Docker compose yml文件部署nginx前端项目
于 2024-10-29 14:59:17 首次发布