Skip to content

Instantly share code, notes, and snippets.

@parsa-asgari
Last active February 19, 2022 08:16
Show Gist options
  • Save parsa-asgari/7c3f93728a6de5fc049a90723a01f4ba to your computer and use it in GitHub Desktop.
Save parsa-asgari/7c3f93728a6de5fc049a90723a01f4ba to your computer and use it in GitHub Desktop.
simple gitlab-runner config.toml for shell docker
concurrent = 1
check_interval = 0
[session_server]
session_timeout = 1800
[[runners]]
name = "YOUR_HOSTNAME"
url = "http://192.168.100.140/"
token = "YOUR_TOKEN"
executor = "shell"
[runners.custom_build_dir]
[runners.cache]
[runners.cache.s3]
[runners.cache.gcs]
[runners.cache.azure]
[runners.docker]
tls_verify = false
image = "docker:latest"
privileged = false
disable_entrypoint_overwrite = false
oom_kill_disable = false
disable_cache = false
volumes = ["/cache"]
shm_size = 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment