Docker Machine Overview
Estimated reading time: 4 minutes
You can use Docker Machine to:
- Install and run Docker on Mac or Windows
- Provision and manage multiple remote Docker hosts
- Provision Swarm clusters
What is Docker Machine?
Docker Machine is a tool that lets you install Docker Engine on virtual hosts, and manage the hosts with docker-machine commands. You can use Machine to create Docker hosts on your local Mac or Windows box, on your company network, in your data center, or on cloud providers like Azure, AWS, or Digital Ocean.
Using docker-machine commands, you can start, inspect, stop, and restart a managed host, upgrade the Docker client and daemon, and configure a Docker client to talk to your host.
Point the Machine CLI at a running, managed host, and you can run docker commands directly on that host. For example, run docker-machine env default to point to a host called default, follow on-screen instructions to complete env setup, and run docker ps, docker run hello-world, and so forth.
参考链接:https://docs.docker.com/machine
Docker Machine 是一款用于安装 Docker Engine 并管理虚拟主机的工具。它支持在本地 Mac 或 Windows 系统上创建 Docker 主机,也可以在公司网络、数据中心或云端提供商如 Azure、AWS 和 Digital Ocean 上配置远程 Docker 主机。通过使用 docker-machine 命令可以轻松启动、检查、停止和重启已管理的主机,并能升级 Docker 客户端和守护进程。
1652

被折叠的 条评论
为什么被折叠?



