Forrest logo
back to context overview

gitlab-runner

List of commands for gitlab-runner:

  • gitlab-runner:tldr:192c4 gitlab-runner: Check if the registered runners can connect to GitLab.
    $ sudo gitlab-runner verify
    try on your machine
    explain this command
  • gitlab-runner:tldr:27852 gitlab-runner: Restart the runner service.
    $ sudo gitlab-runner restart
    try on your machine
    explain this command
  • gitlab-runner:tldr:8b3e0 gitlab-runner: Register a runner.
    $ sudo gitlab-runner register --url ${https:--gitlab-example-com} --registration-token ${token} --name ${name}
    try on your machine
    explain this command
  • gitlab-runner:tldr:8e21b gitlab-runner: Display the status of the runner service.
    $ sudo gitlab-runner status
    try on your machine
    explain this command
  • gitlab-runner:tldr:cb962 gitlab-runner: Unregister a runner.
    $ sudo gitlab-runner unregister --name ${name}
    try on your machine
    explain this command
  • gitlab-runner:tldr:e927c gitlab-runner: Register a runner with a Docker executor.
    $ sudo gitlab-runner register --url ${https:--gitlab-example-com} --registration-token ${token} --name ${name} --executor ${docker}
    try on your machine
    explain this command
back to context overview