summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorAndrii Bubis <firstrow@gmail.com>2015-06-24 10:11:20 -0700
committerAndrii Bubis <firstrow@gmail.com>2015-06-24 10:11:20 -0700
commit5db72e682be18c1bc89f2317bcbb0e1ab9e709f2 (patch)
tree34cadf5c22c4c2d2ee5350ea7142118518b1a263 /README.md
parente7900b016df0e0cbffebe4f772ac56464132ece7 (diff)
downloadchat-5db72e682be18c1bc89f2317bcbb0e1ab9e709f2.tar.gz
chat-5db72e682be18c1bc89f2317bcbb0e1ab9e709f2.tar.bz2
chat-5db72e682be18c1bc89f2317bcbb0e1ab9e709f2.zip
Fixed list numbers
Diffstat (limited to 'README.md')
-rw-r--r--README.md40
1 files changed, 22 insertions, 18 deletions
diff --git a/README.md b/README.md
index 0433e8d97..fc0186380 100644
--- a/README.md
+++ b/README.md
@@ -35,31 +35,35 @@ Local Machine Setup (Docker)
### Ubuntu ###
1. Follow the instructions at https://docs.docker.com/installation/ubuntulinux/ or use the summery below.
-``` 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
-```
+ ``` 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:
-``` bash
-pacman -S docker
-systemctl enable docker.service
-systemctl start docker.service
-gpasswd -a <username> docker
-newgrp docker
-```
+
+ ``` 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
-```
+
+ ``` 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 ###