docker的应用

docker 配置运行nginx

docker-compose -f nginx.yml up -d
内容如下:
nginx:
  image: nginx:latest
  ports:
    - "8082:83"
  volumes: 
    - ./nginx/www:/usr/share/nginx/html
    - ./nginx/conf/default.conf:/etc/nginx/conf.d/default.conf

WuYiLong原创大约 1 分钟dockerdocker