[ADD] documentation, support OSX kubernetes
This commit is contained in:
parent
2f21c94c9d
commit
49021ebd19
2 changed files with 16 additions and 1 deletions
|
|
@ -38,7 +38,7 @@ docker build -f Dockerfile.prod.pkg -t technolibre/erplibre:12.0-pkg .
|
|||
Go at the root of this git project.
|
||||
```bash
|
||||
cd ERPLibre
|
||||
docker-compose -f docker-compose.yml up
|
||||
docker-compose -f docker-compose.yml up -d
|
||||
```
|
||||
|
||||
### Diagnostic Docker-Compose
|
||||
|
|
@ -94,3 +94,12 @@ Delete volume
|
|||
```bash
|
||||
docker volume prune
|
||||
```
|
||||
|
||||
# Need more space for docker
|
||||
You can change the home for docker, edit file `/etc/docker/daemon.json`
|
||||
```json
|
||||
{
|
||||
"data-root": "/home/docker"
|
||||
}
|
||||
```
|
||||
And restart docker service. You can delete all older location of docker or move it.
|
||||
|
|
|
|||
|
|
@ -25,6 +25,12 @@ echo "\n--- Installing Python 3 + pip3 --"
|
|||
brew install git python3 wget pyenv
|
||||
brew link git
|
||||
brew link wget
|
||||
echo "\n--- Installing docker --"
|
||||
brew install minikube docker docker-compose docker-machine
|
||||
brew cask install virtualbox
|
||||
docker-machine create --driver virtualbox default
|
||||
docker-machine env default
|
||||
eval "$(docker-machine env default)"
|
||||
echo "\n---- Installing nodeJS NPM and rtlcss for LTR support ----"
|
||||
brew install nodejs npm openssl
|
||||
sudo npm install -g rtlcss
|
||||
|
|
|
|||
Loading…
Reference in a new issue