gitlab.com/jfprevost/gitlab-runner-notlscheck@v11.11.4+incompatible/config.toml.example (about)

     1  concurrent = 4
     2  
     3  [[runners]]
     4    name = "ruby-2.1"
     5    url = "https://CI/"
     6    token = "TOKEN"
     7    limit = 2
     8    executor = "shell"
     9    builds_dir = ""
    10    shell = "bash"
    11  
    12  [[runners]]
    13    name = "ruby-2.1-docker"
    14    url = "https://CI/"
    15    token = "TOKEN"
    16    limit = 0
    17    executor = "docker"
    18    builds_dir = ""
    19    [runners.docker]
    20      host = ""
    21      image = "ruby:2.1"
    22      privileged = false
    23      disable_cache = false
    24      cache_dir = ""
    25  
    26  [[runners]]
    27    name = "ruby-2.1-docker-ssh"
    28    url = "https://CI/"
    29    token = "TOKEN"
    30    limit = 0
    31    executor = "docker-ssh"
    32    builds_dir = ""
    33    [runners.docker]
    34      host = ""
    35      image = "ubuntu-upstart:14.04"
    36      privileged = false
    37      disable_entrypoint_overwrite = false
    38      disable_cache = false
    39      cache_dir = ""
    40      [runners.docker.sysctls]
    41        "net.ipv4.ip_forward" = "1"
    42    [runners.ssh]
    43      port = "22"
    44      user = "root"
    45      password = "docker.io"
    46  
    47  
    48  [[runners]]
    49    name = "production-server"
    50    url = "https://CI/"
    51    token = "TOKEN"
    52    limit = 0
    53    executor = "ssh"
    54    builds_dir = ""
    55    [runners.ssh]
    56      host = "my-production-server"
    57      port = "22"
    58      user = "root"
    59      password = "production-server-password"