1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00
moby--moby/docs/installation/cloud/overview.md
Victoria Bialas 4e9e95fe8d added better what's next topics to point to new machine docs related to Issue #18282
updated cloud install example per Olivier's comments, added better command examples

updates per @thaJeztah comments

fixed links per @theJeztah comments, renamed cloud.md to overview.md for better URL name

updates per @moxiegirl comments, added alias for renamed file, modified links, changed a title

fixed link errors

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>
2016-02-10 14:19:05 -08:00

2.6 KiB

Choose how to install

You can install Docker Engine on any cloud platform that runs an operating system (OS) that Docker supports. This includes many flavors and versions of Linux, along with Mac and Windows.

You have two options for installing:

  • Manually install on the cloud (create cloud hosts, then install Docker Engine on them)
  • Use Docker Machine to provision cloud hosts

Manually install Docker Engine on a cloud host

To install on a cloud provider:

  1. Create an account with the cloud provider, and read cloud provider documentation to understand their process for creating hosts.

  2. Decide which OS you want to run on the cloud host.

  3. Understand the Docker prerequisites and install process for the chosen OS. See Install Docker Engine for a list of supported systems and links to the install guides.

  4. Create a host with a Docker supported OS, and install Docker per the instructions for that OS.

Example (AWS): Manual install on a cloud provider shows how to create an Amazon Web Services (AWS) EC2 instance, and install Docker Engine on it.

Use Docker Machine to provision cloud hosts

Docker Machine driver plugins are available for several popular cloud platforms, so you can use Machine to provision one or more Dockerized hosts on those platforms.

With Docker Machine, you can use the same interface to create cloud hosts with Docker Engine on them, each configured per the options you specify.

To do this, you use the docker-machine create command with the driver for the cloud provider, and provider-specific flags for account verification, security credentials, and other configuration details.

Example: Use Docker Machine to provision cloud hosts walks you through the steps to set up Docker Machine and provision a Dockerized host on Digital Ocean).

Where to go next