Initial commit

This commit is contained in:
2020-02-20 22:56:41 +03:00
commit 4b434f2268
33 changed files with 2834 additions and 0 deletions

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

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

3
hooks/mysql.sh Executable file
View File

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

2
hooks/quit-xdebug.sh Executable file
View File

@ -0,0 +1,2 @@
#!/bin/bash
cd docker-compose-projects/structure/ && ./dockerfiles/php-fpm/xdebug.sh stop && cd

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

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

2
hooks/start-xdebug.sh Executable file
View File

@ -0,0 +1,2 @@
#!/bin/bash
cd docker-compose-projects/structure/ && ./dockerfiles/php-fpm/xdebug.sh start && cd