Browse code

Merge pull request #12460 from moxiegirl/fix-carry-12383

Putting into our new format for cloud

Sven Dowideit authored on 2015/04/23 07:52:56
Showing 1 changed files
... ...
@@ -2,52 +2,14 @@ page_title: Installation on Amazon EC2
2 2
 page_description: Installation instructions for Docker on Amazon EC2.
3 3
 page_keywords: amazon ec2, virtualization, cloud, docker, documentation, installation
4 4
 
5
-# Amazon EC2
5
+## Amazon EC2
6 6
 
7
-There are several ways to install Docker on AWS EC2. You can use Amazon Linux, which includes the Docker packages in its Software Repository, or opt for any of the other supported Linux images, for example a [*Standard Ubuntu Installation*](#standard-ubuntu-installation).
7
+You can install Docker on any AWS EC2 Amazon Machine Image (AMI) which runs an
8
+operating system that Docker supports. Amazon's website includes specific
9
+instructions for [installing on Amazon
10
+Linux](http://docs.aws.amazon.com/AmazonECS/latest/developerguide/docker-basics.html#install_docker). To install on
11
+another AMI, follow the instructions for its specific operating
12
+system in this installation guide. 
8 13
 
9
-**You'll need an** [AWS account](http://aws.amazon.com/) **first, of
10
-course.**
11
-
12
-## Amazon QuickStart with Amazon Linux AMI 2014.09.1
13
-
14
-The latest Amazon Linux AMI, 2014.09.1, is Docker ready. Docker packages can be installed from Amazon's provided Software
15
-Repository.
16
-
17
-1. **Choose an image:**
18
-   - Launch the [Create Instance
19
-     Wizard](https://console.aws.amazon.com/ec2/v2/home?#LaunchInstanceWizard:)
20
-     menu on your AWS Console.
21
-   - In the Quick Start menu, select the Amazon provided AMI for Amazon Linux 2014.09.1
22
-   - For testing you can use the default (possibly free)
23
-     `t2.micro` instance (more info on
24
-     [pricing](http://aws.amazon.com/ec2/pricing/)).
25
-   - Click the `Next: Configure Instance Details`
26
-      button at the bottom right.
27
-2. After a few more standard choices where defaults are probably ok,
28
-   your Amazon Linux instance should be running!
29
-3. SSH to your instance to install Docker :
30
-   `ssh -i <path to your private key> ec2-user@<your public IP address>`
31
-4. Add the ec2-user to the docker group :
32
-   `sudo usermod -a -G docker ec2-user`
33
-5. Restart the machine and log back in
34
-   `sudo shutdown -r now`
35
-6. Once connected to the instance, type
36
-   `sudo yum install -y docker ; sudo service docker start`
37
- to install and start Docker
38
-
39
-**If this is your first AWS instance, you may need to set up your Security Group to allow SSH.** By default all incoming ports to your new instance will be blocked by the AWS Security Group, so you might just get timeouts when you try to connect.
40
-
41
-Once you`ve got Docker installed, you're ready to try it out – head on
42
-over to the [User Guide](/userguide).
43
-
44
-## Standard Ubuntu Installation
45
-
46
-If you want a more hands-on installation, then you can follow the
47
-[*Ubuntu*](/installation/ubuntulinux) instructions installing Docker
48
-on any EC2 instance running Ubuntu. Just follow Step 1 from the Amazon
49
-QuickStart above to pick an image (or use one of your
50
-own) and skip the step with the *User Data*. Then continue with the
51
-[*Ubuntu*](/installation/ubuntulinux) instructions.
52
-
53
-Continue with the [User Guide](/userguide/).
14
+For detailed information on Amazon AWS support for Docker, refer to [Amazon's
15
+documentation](http://docs.aws.amazon.com/AmazonECS/latest/developerguide/docker-basics.html).