Merge pull request #67 from firstrow/patch-1
Update README.md - make it little user friendly
Этот коммит содержится в:
48
README.md
48
README.md
@@ -33,38 +33,38 @@ Local Machine Setup (Docker)
|
|||||||
6. When docker is done fetching the image, open http://dockerhost:8065/ in your browser
|
6. When docker is done fetching the image, open http://dockerhost:8065/ in your browser
|
||||||
|
|
||||||
### Ubuntu ###
|
### 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.
|
||||||
|
|
||||||
`sudo apt-get update`
|
``` 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
|
||||||
|
```
|
||||||
|
|
||||||
`sudo apt-get install wget`
|
2. Run `docker run --name mattermost-dev -d --publish 8065:80 mattermost/platform:helium`
|
||||||
|
|
||||||
`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
|
3. When docker is done fetching the image, open http://localhost:8065/ in your browser
|
||||||
|
|
||||||
### Arch ###
|
### Arch ###
|
||||||
1. Install docker using the following commands
|
1. Install docker using the following commands:
|
||||||
|
|
||||||
`pacman -S docker`
|
``` bash
|
||||||
|
pacman -S docker
|
||||||
|
systemctl enable docker.service
|
||||||
|
systemctl start docker.service
|
||||||
|
gpasswd -a <username> docker
|
||||||
|
newgrp docker
|
||||||
|
```
|
||||||
|
|
||||||
`systemctl enable docker.service`
|
2. Start docker container:
|
||||||
|
|
||||||
`systemctl start docker.service`
|
``` bash
|
||||||
|
docker run --name mattermost-dev -d --publish 8065:80 mattermost/platform:helium
|
||||||
|
```
|
||||||
|
|
||||||
`gpasswd -a <username> docker`
|
3. When docker is done fetching the image, open http://localhost:8065/ in your browser.
|
||||||
|
|
||||||
`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
|
|
||||||
|
|
||||||
### Notes ###
|
### Notes ###
|
||||||
If your ISP blocks port 25 then you may install locally but email will not be sent.
|
If your ISP blocks port 25 then you may install locally but email will not be sent.
|
||||||
@@ -109,7 +109,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.
|
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
|
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.
|
20. Return the Elastic Beanstalk from the AWS console.
|
||||||
21. Select the environment you created.
|
21. Select the environment you created.
|
||||||
22. Select configuration from the sidebar.
|
22. Select configuration from the sidebar.
|
||||||
|
|||||||
Ссылка в новой задаче
Block a user