From 544df66490c885adb6a0264098ed0e6a2ee3d331 Mon Sep 17 00:00:00 2001 From: Ben T Date: Sun, 23 Feb 2014 08:04:21 -0500 Subject: [PATCH 1/3] Update INSTALL-digital-ocean.md Why not use the docker install script? It has checks to make sure things are installed correctly. It could also be done via curl: 'curl -sL https://get.docker.io/ | sh'. There's also https://get.docker.io/ubuntu/ as well, which has less checks. Finally, should there be steps to set up an additional user and disable root login? Seems a little insecure. --- docs/INSTALL-digital-ocean.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/docs/INSTALL-digital-ocean.md b/docs/INSTALL-digital-ocean.md index 1f9bbdbfb62..5f42bef2585 100644 --- a/docs/INSTALL-digital-ocean.md +++ b/docs/INSTALL-digital-ocean.md @@ -63,10 +63,7 @@ Replace `192.168.1.1` with the IP address you got from Digital Ocean. Finish installing Docker: - sudo sh -c "wget -qO- https://get.docker.io/gpg | apt-key add -" - sudo sh -c "echo deb http://get.docker.io/ubuntu docker main /etc/apt/sources.list.d/docker.list" - sudo apt-get update - sudo apt-get install lxc-docker + 'wget -qO- https://get.docker.io/ | sh' From 73692bf229e707f60f7d344ad537f02ae913d645 Mon Sep 17 00:00:00 2001 From: Ben T Date: Sun, 23 Feb 2014 08:06:48 -0500 Subject: [PATCH 2/3] Left command in quotes. --- docs/INSTALL-digital-ocean.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/INSTALL-digital-ocean.md b/docs/INSTALL-digital-ocean.md index 5f42bef2585..e0a2bd4b600 100644 --- a/docs/INSTALL-digital-ocean.md +++ b/docs/INSTALL-digital-ocean.md @@ -63,7 +63,7 @@ Replace `192.168.1.1` with the IP address you got from Digital Ocean. Finish installing Docker: - 'wget -qO- https://get.docker.io/ | sh' + wget -qO- https://get.docker.io/ | sh From 801aec618e0ebfd1584e5eefc6e2190219259588 Mon Sep 17 00:00:00 2001 From: Ben T Date: Sun, 23 Feb 2014 08:09:24 -0500 Subject: [PATCH 3/3] One last thing... it's a little early here... sorry! --- docs/INSTALL-digital-ocean.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/INSTALL-digital-ocean.md b/docs/INSTALL-digital-ocean.md index e0a2bd4b600..759fc3938cc 100644 --- a/docs/INSTALL-digital-ocean.md +++ b/docs/INSTALL-digital-ocean.md @@ -63,7 +63,7 @@ Replace `192.168.1.1` with the IP address you got from Digital Ocean. Finish installing Docker: - wget -qO- https://get.docker.io/ | sh + sudo wget -qO- https://get.docker.io/ | sh