From e7900b016df0e0cbffebe4f772ac56464132ece7 Mon Sep 17 00:00:00 2001 From: Andrii Bubis Date: Wed, 24 Jun 2015 10:02:53 -0700 Subject: Update README.md --- README.md | 50 +++++++++++++++++++++++--------------------------- 1 file changed, 23 insertions(+), 27 deletions(-) (limited to 'README.md') 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 ` - -`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 +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 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 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. -- cgit v1.2.3-1-g7c22 From 5db72e682be18c1bc89f2317bcbb0e1ab9e709f2 Mon Sep 17 00:00:00 2001 From: Andrii Bubis Date: Wed, 24 Jun 2015 10:11:20 -0700 Subject: Fixed list numbers --- README.md | 40 ++++++++++++++++++++++------------------ 1 file changed, 22 insertions(+), 18 deletions(-) (limited to 'README.md') 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 -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 + 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 docker -newgrp docker -``` + + ``` bash + pacman -S docker + systemctl enable docker.service + systemctl start docker.service + gpasswd -a 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 ### -- cgit v1.2.3-1-g7c22 From 47322b9324e7fffa7c3457a80a67713dd430ab6c Mon Sep 17 00:00:00 2001 From: Andrii Bubis Date: Wed, 24 Jun 2015 10:20:11 -0700 Subject: Fixed typos --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index fc0186380..4c0631953 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ Local Machine Setup (Docker) 6. When docker is done fetching the image, open http://dockerhost:8065/ in your browser ### Ubuntu ### -1. Follow the instructions at https://docs.docker.com/installation/ubuntulinux/ or use the summery below. +1. Follow the instructions at https://docs.docker.com/installation/ubuntulinux/ or use the summary below. ``` bash sudo apt-get update @@ -107,7 +107,7 @@ AWS Elastic Beanstalk Setup (Docker) 18. Modify an existing CNAME record set or create a new one with the name * and the value of the domain you copied in step 1.13. 19. Save the record set -3. Set the enviroment variable "MATTERMOST\_DOMAIN" to the domain you mapped above (example.com not www.example.com) +3. Set the environment variable "MATTERMOST\_DOMAIN" to the domain you mapped above (example.com not www.example.com) 20. Return the Elastic Beanstalk from the AWS console. 21. Select the environment you created. 22. Select configuration from the sidebar. -- cgit v1.2.3-1-g7c22