- Docker on Windows
- Elton Stoneman
- 262字
- 2021-07-02 12:47:59
Developing Dockerized .NET Framework and .NET Core Applications
Docker is a platform for packaging, distributing, running, and managing applications. When you package your applications as Docker images, they all have the same shape. You can deploy, manage, secure, and upgrade them all in the same way. All Dockerized applications have the same requirements to run them: a Docker Engine running on a compatible operating system. Applications run in isolated environments, so you can host different application platforms and different platform versions on the same machine with no interference.
In the .NET world, this means you can run multiple workloads on a single Windows machine. They could be ASP.NET websites, or Windows Communication Foundation (WCF) apps running as .NET console applications or .NET Windows Services. In the previous chapter we looked at Dockerizing legacy .NET applications without any code changes, but Docker has some simple expectations about how applications running inside containers should behave so that they can get the full benefit of the platform.
In this chapter we'll look at how to build applications so that they can take complete advantage of the Docker platform, including:
- The integration points between Docker and your application
- Configuring your application with config files and environment variables
- Monitoring applications with health checks
- Running distributed solutions with components in different containers
This will help you develop .NET and .NET Core applications that behave in a way Docker expects so that you can manage them fully with Docker.
We will cover the following topics in this chapter:
- Building good citizens for Docker
- Separating dependencies
- Breaking up monolithic applications
- 每天5分鐘玩轉Kubernetes
- Linux系統文件安全實戰全攻略
- 大學計算機應用基礎實踐教程(Windows 7+Office 2013)
- 網絡操作系統:Windows Server 2003管理與應用
- 曝光:Linux企業運維實戰
- 循序漸進學Docker
- Python基礎教程(第3版)
- 8051軟核處理器設計實戰
- Windows 7案例教程
- VMware NSX Cookbook
- Windows 7實戰從入門到精通(超值版)
- Advanced Infrastructure Penetration Testing
- UI設計手繪表現從入門到精通
- 鴻蒙HarmonyOS手機應用開發實戰
- Hadoop Real-World Solutions Cookbook