mirror of
https://github.com/mattermost/mattermost.git
synced 2026-05-28 04:35:04 -04:00
Fixed list numbers
This commit is contained in:
parent
e7900b016d
commit
5db72e682b
1 changed files with 22 additions and 18 deletions
40
README.md
40
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 ###
|
||||
|
|
|
|||
Loading…
Reference in a new issue