- Docker on Windows
- Elton Stoneman
- 206字
- 2021-07-02 19:53:15
The Docker service and Docker command-line
Docker runs as a background Windows service. This service manages all the running containers and exposes a REST API for consumers to work with containers and other Docker resources. The main consumer of that API is the Docker command-line tool, which is what I use for most of the code samples in this book.
The Docker REST API is public, and there are alternative management tools that are powered by the API, like Portainer (which is open source) and Docker Universal Control Plane (UCP) (which is a commercial product). The Docker CLI is very simple to use; you use commands like docker container run to run an application in a container and docker container rm to remove a container.
You can also configure the Docker API to be remotely accessible and configure your Docker CLI to connect to a remote service. This means you can manage a Docker host running in the cloud using Docker commands on your laptop. The setup to allow remote access should also include encryption, so your connection is secure--and in this chapter, I will show you an easy way to configure that.
When you have Docker running, you'll start by running containers from images.
- Learn TypeScript 3 by Building Web Applications
- JavaScript全程指南
- UML和模式應用(原書第3版)
- Modular Programming with Python
- Node.js Design Patterns
- Learning PostgreSQL
- Oracle Exadata性能優化
- iOS 9 Game Development Essentials
- JavaScript語言精髓與編程實踐(第3版)
- C語言程序設計(第2版)
- 程序員數學:用Python學透線性代數和微積分
- Python:Master the Art of Design Patterns
- Bootstrap 4 Cookbook
- INSTANT Yii 1.1 Application Development Starter
- Learning Node.js for .NET Developers