summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md24
1 files changed, 15 insertions, 9 deletions
diff --git a/README.md b/README.md
index 6bcb0fcfc..a0aeb974c 100644
--- a/README.md
+++ b/README.md
@@ -6,16 +6,9 @@
About Mattermost
================
-Mattermost is an open source team communication service. It brings messaging and files shared by your team into one place accessible across PCs and phones, with archiving and search.
+Mattermost is a team communication service. It brings team messaging and file sharing into one place, accessible across PCs and phones, with archiving and search.
-<br>
-WHAT MATTERS MOST TO YOUR TEAM?
-
-Words have power.
-Mattermost serves teams who use words to shape the future.
-The words you choose are up to you.
-
-*- SpinPunch*
+We built Mattermost to help teams focus on what matters most to them. It works for us, we hope it works for you too.
Installing the Mattermost Preview
@@ -41,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