Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 410 Bytes

node.md

File metadata and controls

12 lines (9 loc) · 410 Bytes

In Gitlab nodes on which pipelines are executed, are called "Runners".

There are shared runners and specific runners. When setting up a shared runner, your pipeline will automatically use that pipeline by default.
In order to limit a pipeline to a specific runner, you need to use tags. This is how it looks:

job:
  tags:
    - docker

The pipeline will run only on runners tagged with docker.