Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 456 Bytes

01_25-register-and-enable-Docker-runner.md

File metadata and controls

16 lines (13 loc) · 456 Bytes

Setting up your CI/CD infrastructure

Registering a Docker runner

sudo gitlab-runner register

Use:

  • GitLab API endpoint and runner registration token from GitLab's runner settings page
  • Docker runner for the desription
  • docker for the tag
  • false for running untagged builds
  • false for locking Runner to current project
  • docker for the executor
  • alpine for the default docker image (Alpine is a lightweight image)