NOTE: I want disclaimer that this work is not complete mine. Most of the work here is comming from: https://dhwaneetbhatt.com/blog/run-docker-without-docker-desktop-on-macos
$ brew doctor
$ brew updateNOTE: I want disclaimer that this work is not complete mine. Most of the work here is comming from: https://dhwaneetbhatt.com/blog/run-docker-without-docker-desktop-on-macos
$ brew doctor
$ brew update| Host github.com gist.github.com | |
| User juancsr | |
| Hostname github.com | |
| PreferredAuthentications publickey | |
| IdentityFile /home/user/.ssh/id_rsa |
| call plug#begin('~/.local/share/nvim/plugged') | |
| " Themes | |
| Plug 'morhetz/gruvbox' | |
| " Nerdtree | |
| Plug 'preservim/nerdtree' | |
| Plug 'Xuyuanp/nerdtree-git-plugin' | |
| Plug 'ryanoasis/vim-devicons' | |
| Plug 'johnstef99/vim-nerdtree-syntax-highlight' |
| # remember to run docker network create back_end | |
| version: '3' | |
| # mongodb | |
| services: | |
| db: | |
| image: mongo:latest | |
| container_name: mongodb_backend_develop | |
| environment: | |
| - MONGO_DATA_DIR=/data/db | |
| - MONGO_LOG_DIR=/var/log/mongodb |
| # Lee el nombre de la carpeta base | |
| read -p "Ingrese el nombre de la carpeta: " folder_name | |
| if [ -d "$HOME/$folder_name" ]; then | |
| echo "Eliminando la carpeta $folder_name" | |
| rm -r $HOME/$folder_name | |
| fi | |
| mkdir $HOME/$folder_name && cd $HOME/$folder_name | |
| echo "Creando carpetas..." |