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
posted @ 2023-12-04 11:18  Ronald Hu  阅读(24)  评论(0编辑  收藏  举报