- Docker on Windows
- Elton Stoneman
- 235字
- 2021-07-02 19:53:18
Packaging and Running Applications as Docker Containers
Docker reduces the logical view of your infrastructure to three core components: hosts, containers, and images. Hosts run containers, which are isolated instances of an application. Containers are created from images, which are packaged applications. The Docker container image is conceptually very simple - it's a single unit that contains a complete, self-contained application. The image format is very efficient, and the integration between the image and the runtime is very smart, so mastering images is your first step to using Docker effectively.
You've already seen some images in Chapter 1, Getting Started with Docker on Windows, by running some basic containers to check your Docker installation was working correctly - but I didn't look very closely at the image or how Docker used it. In this chapter, you'll get a thorough understanding of Docker images: learning how they're structured, understanding how Docker uses them, and looking at how to package your own applications as Docker images.
The first thing to understand is the difference between an image and a container, which you can see very clearly by running different types of container from the same image.
In this chapter, you'll get a lot of experience of the Docker basics:
- Running containers from images
- Building images from Dockerfiles
- Packaging your own applications as Docker images
- Working with data in images and containers
- Packaging legacy ASP.NET web apps as Docker images
- Java EE 6 企業級應用開發教程
- JMeter 性能測試實戰(第2版)
- 程序員數學:用Python學透線性代數和微積分
- Responsive Web Design with HTML5 and CSS3
- Raspberry Pi for Secret Agents(Third Edition)
- Java開發入行真功夫
- 64位匯編語言的編程藝術
- Python程序設計案例教程
- 征服RIA
- Learning Three.js:The JavaScript 3D Library for WebGL
- Highcharts Cookbook
- Python編程從0到1(視頻教學版)
- C語言程序設計教程
- Mastering ROS for Robotics Programming
- C++程序設計教程