Passing env variables to register a new runner
I'm trying to register a new runner with docker executor with some options in the [runners.docker] section. So I pass three env vars:
DOCKER_DISABLE_CACHE=true DOCKER_ALLOWED_IMAGES=["", "/*"] DOCKER_VOLUMES=["/mnt/nfs/:/data/nfs/:rw"]
but I don't see these options after the registration succeed.
When I show the list of commands (gitlab-ci-multi-runner register -h) I don't see any options to set these parameters.
The register command doesn't support these options ?
Thanks.