summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2015-06-19 12:50:58 -0400
committerChristopher Speller <crspeller@gmail.com>2015-06-19 12:50:58 -0400
commit07c65be91c53846a92784b5b60b2b84e671e4112 (patch)
tree8836a1947ba073d768bb8341f690040a05aa4080
parent76fca02e26ea42752a85f3b273960dcd6fcd56ec (diff)
parentb72b25f30aa24614ca44ecc4afaeff2a51aa95f4 (diff)
downloadchat-07c65be91c53846a92784b5b60b2b84e671e4112.tar.gz
chat-07c65be91c53846a92784b5b60b2b84e671e4112.tar.bz2
chat-07c65be91c53846a92784b5b60b2b84e671e4112.zip
Merge pull request #42 from mattermost/readme
Linebreaks HELIUM
-rw-r--r--README.md13
1 files changed, 13 insertions, 0 deletions
diff --git a/README.md b/README.md
index 53259ea10..a0aeb974c 100644
--- a/README.md
+++ b/README.md
@@ -34,22 +34,35 @@ Local Machine Setup (Docker)
### Ubuntu ###
1. Follow the instructions at https://docs.docker.com/installation/ubuntulinux/ or use the summery below.
+
`sudo apt-get update`
+
`sudo apt-get install wget`
+
`wget -qO- https://get.docker.com/ | sh`
+
`sudo usermod -aG docker <username>`
+
`sudo service docker start`
+
`newgrp docker`
+
2. Run `docker run --name mattermost-dev -d --publish 8065:80 mattermost/platform:helium
3. When docker is done fetching the image, open http://localhost:8065/ in your browser
### Arch ###
1. Install docker using the following commands
+
`pacman -S docker`
+
`systemctl enable docker.service`
+
`systemctl start docker.service`
+
`gpasswd -a <username> docker`
+
`newgrp docker`
+
2. docker run --name mattermost-dev -d --publish 8065:80 mattermost/platform:helium
3. When docker is done fetching the image, open http://localhost:8065/ in your browser