summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorReed Garmsen <rgarmsen2295@gmail.com>2015-06-19 11:49:59 -0700
committerReed Garmsen <rgarmsen2295@gmail.com>2015-06-19 11:49:59 -0700
commit9f652310a5ee9c51633264d08434e4a08224a9eb (patch)
tree80e91b8343f567f301d247392d09ba620909076d /README.md
parentc1740ffa2fcfcf663d8e847cfe03187fb600b6c1 (diff)
parent6c8d7b1b9fe00e60582900b7c1e782e2c0a00325 (diff)
downloadchat-9f652310a5ee9c51633264d08434e4a08224a9eb.tar.gz
chat-9f652310a5ee9c51633264d08434e4a08224a9eb.tar.bz2
chat-9f652310a5ee9c51633264d08434e4a08224a9eb.zip
Merge pull request #16 from rgarmsen2295/master
Remerging
Diffstat (limited to 'README.md')
-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