Is there any way to decrease verbosity in my GitLab CI (see screenshot below).
My .gitlab-ci.yml file looks like this:
.docker:
image: docker:latest
services:
- docker:${DOCKER_VERSION}-dind
variables:
DOCKER_HOST: unix:///var/run/docker.sock
DOCKER_VERSION: '27.3.1'
.dagger:
extends: [.docker]
before_script:
- apk add curl && curl -fsSL https://dl.dagger.io/dagger/install.sh | BIN_DIR=/usr/local/bin sh
lint:
extends: [.dagger]
script:
- dagger call lint
I've found https://docs.dagger.io/configuration/engine but I was expecting some OS variable to initialize in my yaml file.
Should I create some files on my Gitlab runner server?
Thanks