File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ <h3>GitLab CI/CD configuration for a Laravel application running with Kool.dev</
106106
107107 < div style ="margin: 1em 5em; padding: 1em; " class ="bg-dark ">
108108 < pre class ="text-light ">
109- phpqa: kool docker jakzal/phpqa:1.17.0- php7.2 -alpine
109+ phpqa: kool docker jakzal/phpqa:php7.4 -alpine
110110 # helpful to sync up service dependencies
111111 wait-services: kool exec app dockerize -wait tcp://database:3306 -wait tcp://cache:6379 -timeout 30s
112112
Original file line number Diff line number Diff line change 1+ variables :
2+ # .env.xxx file that should be used as .env
3+ # before composer install.
4+ VENDOR_ENV_FILE : .env.testing
5+
16.vendor :
27 image : kooldev/kool:1.0
38 services :
1015 paths :
1116 - vendor/
1217 before_script :
13- - cp .env.testing .env
18+ - if [ -f $VENDOR_ENV_FILE ]; then cp $VENDOR_ENV_FILE .env; fi
1419 - kool start
1520 script :
1621 - kool run composer install --prefer-dist --no-progress --no-suggest --no-interaction -v --optimize-autoloader
You can’t perform that action at this time.
0 commit comments