Ajouter gitlab-runner-config.toml
This commit is contained in:
parent
0813ee0a4a
commit
d93dc606c5
1 changed files with 27 additions and 0 deletions
27
gitlab-runner-config.toml
Normal file
27
gitlab-runner-config.toml
Normal file
|
@ -0,0 +1,27 @@
|
|||
concurrent = 1
|
||||
check_interval = 0
|
||||
shutdown_timeout = 0
|
||||
|
||||
[session_server]
|
||||
session_timeout = 1800
|
||||
|
||||
[[runners]]
|
||||
name = "<GITLAB DOMAIN>"
|
||||
url = "<GITLAB URL>"
|
||||
id = 5
|
||||
token = "<GITLAB TOKEN>"
|
||||
token_obtained_at = 2023-09-20T02:06:59Z
|
||||
token_expires_at = 0001-01-01T00:00:00Z
|
||||
executor = "docker"
|
||||
[runners.cache]
|
||||
MaxUploadedArchiveSize = 0
|
||||
[runners.docker]
|
||||
tls_verify = false
|
||||
image = "docker:20-dind"
|
||||
privileged = true
|
||||
disable_entrypoint_overwrite = false
|
||||
oom_kill_disable = false
|
||||
disable_cache = false
|
||||
shm_size = 0
|
||||
volumes = ["/var/run/docker.sock:/var/run/docker.sock", "/cache"]
|
||||
network_mode = "host"
|
Loading…
Reference in a new issue