Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Windows Readme #6

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,37 @@

### Requirements

**Windows:**

Install [Docker](https://www.docker.com/products/docker-desktop) and [WSL Windows Ubuntu 20](https://www.microsoft.com/pt-br/p/ubuntu-2004/9n6svws3rx71?rtc=1&activetab=pivot:overviewtab)

### Before start
Note that for Elasticsearch you need at least 262144 memory.

To access:
```
wsl -d docker-desktop
```

Once in your docker-desktop, do the following:
```
echo "vm.max_map_count = 262144"> /etc/sysctl.d/999-docker-desktop-conf
```
Followed by:
```
sysctl -w vm.max_map_count=262144
```
You can then exit the docker-host by typing
```
exit
```

For permissions:
```
Acces docker apache terminal and aply chmod 777 -R html/
```


**Linux:**

Install [Docker](https://docs.docker.com/engine/installation/linux/docker-ce/ubuntu/) and [Docker-compose](https://docs.docker.com/compose/install/#install-compose).
Expand Down