github.com/ssube/gitlab-ci-multi-runner@v1.2.1-0.20160607142738-b8d1285632e6/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_cache = false
    38      cache_dir = ""
    39    [runners.ssh]
    40      port = "22"
    41      user = "root"
    42      password = "docker.io"
    43  
    44  
    45  [[runners]]
    46    name = "production-server"
    47    url = "https://CI/"
    48    token = "TOKEN"
    49    limit = 0
    50    executor = "ssh"
    51    builds_dir = ""
    52    [runners.ssh]
    53      host = "my-production-server"
    54      port = "22"
    55      user = "root"
    56      password = "production-server-password"