summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorAndrii Bubis <firstrow@gmail.com>2015-06-24 10:02:53 -0700
committerAndrii Bubis <firstrow@gmail.com>2015-06-24 10:02:53 -0700
commite7900b016df0e0cbffebe4f772ac56464132ece7 (patch)
tree0d66f04afd49e4f31a9d27c05d97c9e7dbfeee8a /README.md
parent5bc0a19953a4c66058da08e7d560a01b0d428607 (diff)
downloadchat-e7900b016df0e0cbffebe4f772ac56464132ece7.tar.gz
chat-e7900b016df0e0cbffebe4f772ac56464132ece7.tar.bz2
chat-e7900b016df0e0cbffebe4f772ac56464132ece7.zip
Update README.md
Diffstat (limited to 'README.md')
-rw-r--r--README.md50
1 files changed, 23 insertions, 27 deletions
diff --git a/README.md b/README.md
index c2b0fbf2d..0433e8d97 100644
--- a/README.md
+++ b/README.md
@@ -35,36 +35,32 @@ 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
+``` bash
+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
+1. Install docker using the following commands:
+``` bash
+pacman -S docker
+systemctl enable docker.service
+systemctl start docker.service
+gpasswd -a <username> docker
+newgrp docker
+```
+2. Start docker container:
+``` bash
+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.
### Notes ###
If your ISP blocks port 25 then you may install locally but email will not be sent.