compose.yaml 470 B

1234567891011121314151617181920
  1. ---
  2. name: "GitLab Runner"
  3. description: "A self-hosted CI/CD automation tool"
  4. version: "0.0.1"
  5. date: "2023-10-01"
  6. author: "Christian Lempa"
  7. tags:
  8. - gitlab-runner
  9. - ci
  10. - cd
  11. - automation
  12. ---
  13. services:
  14. gitlab-runner:
  15. image: docker.io/gitlab/gitlab-runner:alpine-v17.9.1
  16. container_name: gitlab-runner-1
  17. volumes:
  18. - ./config/config.toml:/etc/gitlab-runner/config.toml:ro
  19. - /var/run/docker.sock:/var/run/docker.sock
  20. restart: unless-stopped