mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-26 09:05:10 +00:00
Aggiunta guida per Docker Desktop e Ubuntu
This commit is contained in:
parent
f91f30a18f
commit
7b28abf877
3 changed files with 47 additions and 0 deletions
|
|
@ -18,6 +18,11 @@ This repository requires Docker, docker-compose and Git to be setup on the insta
|
|||
|
||||
For Docker basics and best practices. Refer Docker [documentation](http://docs.docker.com).
|
||||
|
||||
Follow this guides to install
|
||||
|
||||
* [Docker Desktop](guides/install_docker_desktop.md) for windows
|
||||
* [Docker in Ubuntu](guides/install_dockers_on_ubuntu.md) for ubuntu
|
||||
|
||||
### Cloning the repository and preliminary steps
|
||||
|
||||
Clone this repository somewhere in your system:
|
||||
|
|
|
|||
32
guides/install_docker_desktop.md
Normal file
32
guides/install_docker_desktop.md
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
# Install
|
||||
|
||||
## Step
|
||||
|
||||
Download Docker Desktop [here](https://www.docker.com/products/docker-desktop).
|
||||
|
||||
Execute and Install it.
|
||||
|
||||
In Setting->General **Not** enable "Use the WSL 2 based engine"
|
||||
|
||||
## Minimal Resources
|
||||
|
||||
In Setting->Resources->Advanced
|
||||
|
||||
Give to your Docker at least this resources
|
||||
* 2 CPUs
|
||||
* 4Gb of RAM
|
||||
* 1Gb of Swap memory
|
||||
* Dick image size 64Gb
|
||||
|
||||
## Share your Docker Directory
|
||||
|
||||
**Remember to share your docker directory** or your docker installation will fail.
|
||||
Operating System should and you to share folder automatically but sometimes no.
|
||||
|
||||
In Setting->Resources->File Sharing click on add button and past your docker root directory.
|
||||
|
||||
ex for me is:
|
||||
|
||||
```shell
|
||||
C:\Users\Utente\frappe_docker
|
||||
```
|
||||
10
guides/install_dockers_on_ubuntu.md
Normal file
10
guides/install_dockers_on_ubuntu.md
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
# Install docker on Ubuntu
|
||||
|
||||
## Step
|
||||
Follow this [guide](https://noviello.it/come-installare-e-configurare-docker-su-ubuntu-20-04-lts/).
|
||||
|
||||
After the installation do:
|
||||
|
||||
```shell
|
||||
sudo setfacl -m user:mauro:rw /var/run/docker.soc
|
||||
```
|
||||
Loading…
Reference in a new issue