# 命令执行 docker-compose up -d # docker-compose -f docker-compose.yml up -d version: '3.9' services: # yum install -y httpd-tools nginx: image: nginx:1.25.1 container_name: nginx restart: always ports: - '443:443' - '80:80' volumes: - ./nginx/logs:/var/log/nginx - ./nginx/html:/usr/share/nginx/html - ./nginx/conf/nginx.conf:/etc/nginx/nginx.conf - ./nginx/conf/conf.d:/etc/nginx/conf.d - ./nginx/ssl:/etc/nginx/ssl/ privileged: true