| 1234567891011121314151617181920 |
- ---
- name: "GitLab Runner"
- description: "A self-hosted CI/CD automation tool"
- version: "0.0.1"
- date: "2023-10-01"
- author: "Christian Lempa"
- tags:
- - gitlab-runner
- - ci
- - cd
- - automation
- ---
- services:
- gitlab-runner:
- image: docker.io/gitlab/gitlab-runner:alpine-v17.9.1
- container_name: gitlab-runner-1
- volumes:
- - ./config/config.toml:/etc/gitlab-runner/config.toml:ro
- - /var/run/docker.sock:/var/run/docker.sock
- restart: unless-stopped
|