Nginx docker compose 挂载
Nginx docker compose 挂载
version: "3"
services:
nginx:
image: nginx:1.22.1
restart: always
ports:
- "80:80"
volumes:
- "nginx_html:/usr/share/nginx/html"
- "nginx_config:/etc/nginx"
- /home/nginx/logs:/var/log/nginx
- /etc/localtime:/etc/localtime:ro
volumes:
nginx_config:
driver: local
driver_opts:
o: bind
type: none
device: /home/nginx/conf
nginx_html:
driver: local
driver_opts:
o: bind
type: none
device: /home/nginx/html