diff --git a/docs/INSTALL-digital-ocean.md b/docs/INSTALL-digital-ocean.md
index b89b94832a3..7181106b038 100644
--- a/docs/INSTALL-digital-ocean.md
+++ b/docs/INSTALL-digital-ocean.md
@@ -32,7 +32,7 @@ You will be asked for permission to connect, type `yes`, then the root password,
# Install Git
- sudo apt-get install git
+ apt-get install git
@@ -46,14 +46,14 @@ You will be asked for permission to connect, type `yes`, then the root password,
# Install Docker
- sudo apt-get update
- sudo apt-get install linux-image-generic-lts-raring linux-headers-generic-lts-raring
+ apt-get update
+ apt-get install linux-image-generic-lts-raring linux-headers-generic-lts-raring
Reboot the server:
- sudo reboot
+ reboot
@@ -63,7 +63,7 @@ This will log you out from your SSH session, so reconnect:
Finish installing Docker:
- sudo wget -qO- https://get.docker.io/ | sh
+ wget -qO- https://get.docker.io/ | sh
# Install Discourse
@@ -119,7 +119,7 @@ Copy the entire output and paste it into the `ssh_key` setting in the `app.yml`
Be sure to save the `app.yml` file, and begin bootstrapping Discourse:
- sudo ./launcher bootstrap app
+ ./launcher bootstrap app
@@ -127,7 +127,7 @@ This command may take some time, so be prepared to wait. It is automagically con
After that completes, start Discourse:
- sudo ./launcher start app
+ ./launcher start app