Created
April 3, 2018 10:38
-
-
Save jubel-han/bc019d49aa182bb8a97784428d75d1f8 to your computer and use it in GitHub Desktop.
gitlab runner configuration with docker executor
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
concurrent = 2 | |
check_interval = 2 | |
[[runners]] | |
name = "gcp-runner" | |
url = "https://gitlab.com/" | |
token = "xxxxxx" | |
executor = "docker" | |
[runners.docker] | |
tls_verify = false | |
image = "docker:latest" | |
privileged = true | |
disable_cache = false | |
volumes = ["/cache:/cache"] | |
shm_size = 0 | |
[runners.cache] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment