I try to use pipeline with gitlab-ci
This is my gitlab-ci.ymn file
image: docker-laravel-envoy
services:
- mysql:5.7
stages:
- test
unit_test:
stage: test
script:
- composer install --prefer-dist --no-ansi --no-interaction --no-progress --no-scripts
- php artisan key:generate
- php artisan migrate
- vendor/bin/phpunit
And this is the result of the pipeline
How can i choose the rigth image that will install composer i tried several docker images but still getting the same result i tried (is there a list of docker images where i can choose the one that corepond to my project)
- lorisleiva/laravel-docker:latest
- lorisleiva/laravel-docker:7.4
Do someone know where the problem is ?
Gitlab runners
Shell gitlab runner
When i use docker gitlab runner
When i want to use a docker runner i get this issue
Im using a custom instalation of gitlab on my own server Should i install docker on this server to resolve this issue ?