* move hooks to bash

* add yml allow dir in storage/app
+ slow log options for mariadb
* nvm fix in workspace build instructions
This commit is contained in:
2020-07-16 23:39:44 +03:00
parent 4b434f2268
commit 88490afe77
10 changed files with 18 additions and 8 deletions

3
bash/enter-to-workspace.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/bash
cd $HOME/structure
docker-compose exec workspace su laradock

3
bash/mysql.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/bash
cd $HOME/structure
docker-compose exec db mysql -u root -p123456

3
bash/quit-xdebug.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/bash
cd $HOME/structure
./dockerfiles/php-fpm/xdebug.sh stop && cd

3
bash/restart-nginx.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/bash
cd $HOME/structure
docker-compose exec web nginx -s reload

3
bash/start-xdebug.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/bash
cd $HOME/structure
./dockerfiles/php-fpm/xdebug.sh start && cd