Added stop and composer-update script

This commit is contained in:
Kevin Frantz 2018-09-08 14:44:59 +02:00
parent 8abb5eaaac
commit a76884d63a
3 changed files with 3 additions and 0 deletions

View File

@ -0,0 +1 @@
(cd $(dirname $(readlink -f ${0}))/../docker-symfony/ && docker-compose exec php composer update)

View File

@ -2,5 +2,6 @@
cd $(dirname $(readlink -f ${0}));
bash ./submodule-init.sh
bash ./build.sh
bash ./composer-update.sh
bash ./schema-update.sh
)

1
administration/stop.sh Normal file
View File

@ -0,0 +1 @@
(cd $(dirname $(readlink -f ${0}))/../docker-symfony/ && docker-compose stop)