码迷,mamicode.com
首页 > Windows程序 > 详细

windows 2016 容器管理

时间:2017-03-10 23:31:32      阅读:381      评论:0      收藏:0      [点我收藏+]

标签:href   test   www   doc   file   eve   iis   alt   multiple   

 1. docker-compose 安装 
      python   2.7 
      pip
      pip   install docker-compose 
      常见问题:
      技术分享
      解决方法:
      pip    install  pypiwin32
      
 2.  docker-compose.yaml
      
      docker-compose.yaml 文件如下:
  1. version: ‘2.1‘
  2. services:
  3. db:
  4. image: microsoft/mssql-server-windows-developer
  5. environment:
  6. sa_password: "Password1"
  7. ACCEPT_EULA: "Y"
  8. ports:
  9. - "1433:1433" # REMARK: This is currently required, needs investigation
  10. healthcheck:
  11. test: [ "CMD", "sqlcmd", "-U", "sa", "-P", "Password1", "-Q", "select 1" ]
  12. interval: 1s
  13. retries: 20
  14. web:
  15. build:
  16. context: .
  17. dockerfile: Dockerfile.windows
  18. environment:
  19. - "Data:DefaultConnection:ConnectionString=Server=db,1433;Database=MusicStore;User Id=sa;Password=Password1;MultipleActiveResultSets=True"
  20. depends_on:
  21. db:
  22. condition: service_healthy
  23. ports:
  24. - "5000:5000"
  25. networks:
  26. default:
  27. external:
  28. name: nat

      参考地址:




windows 2016 容器管理

标签:href   test   www   doc   file   eve   iis   alt   multiple   

原文地址:http://www.cnblogs.com/rongfengliang/p/6533388.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!