Windows 2016 container Management

Source: Internet
Author: User

1. Docker-compose Install Python 2.7 pip pip install docker-compose FAQ: Workaround: Pip  Install Pypiwin32 2. Docker-compose.yaml Docker-compose.yaml files are as follows:
  
 
  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" span class= "str" > "-U" "sa" Span class= "pun", "Password1" span class= "str" > "-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

Reference Address: Https://github.com/friism/MusicStore

Null

Windows 2016 container Management

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.