Skip to content

Latest commit

 

History

History
178 lines (118 loc) · 7.34 KB

README.md

File metadata and controls

178 lines (118 loc) · 7.34 KB

Gitlab Runner on Alpine Linux

This is the Container image for the Gitlab runner, running on Alpine Linux.

Docker Automated build Docker Pulls Docker Stars

Alpine Version Gitlab Runner Version

This Container image (yobasystems/gitlab-runner) is based on the minimal Alpine Linux with Gitlab Runner pre-installed.

Alpine Version 3.20.2 (Released 2024-07-22)

Gitlab Runner Version 17.3.0
Docker Machine Version 0.16.2-gitlab.28

🏔️ What is Alpine Linux?

Alpine Linux is a Linux distribution built around musl libc and BusyBox. The image is only 5 MB in size and has access to a package repository that is much more complete than other BusyBox based images. This makes Alpine Linux a great image base for utilities and even production applications. Read more about Alpine Linux here and you can see how their mantra fits in right at home with Container images.

👟 What is Gitlab Runner?

GitLab Runner is the open source project that is used to run your jobs and send the results back to GitLab. It is used in conjunction with GitLab CI, the open-source continuous integration service included with GitLab that coordinates the jobs.

✨ Features

  • Minimal size only
  • 50 MB and only 5 layers
  • Memory usage is minimal on a simple install

🏗️ Architectures

  • :amd64, :x86_64 - 64 bit Intel/AMD (x86_64/amd64)
  • :arm64v8, :aarch64 - 64 bit ARM (ARMv8/aarch64)
  • :arm32v7, :armhf - 32 bit ARM (ARMv7/armhf)

📝 PLEASE CHECK TAGS BELOW FOR SUPPORTED ARCHITECTURES, THE ABOVE IS A LIST OF EXPLANATION

🏷️ Tags

  • :latest latest branch based (Automatic Architecture Selection)
  • :master master branch usually inline with latest
  • :17.3.0, :17.3.0-arch version tag (Automatic Architecture Selection)
  • :amd64, :x86_64 amd64 based on latest tag but amd64 architecture
  • :aarch64, :arm64v8 Armv8 based on latest tag but arm64 architecture
  • :armhf, :arm32v7 Armv7 based on latest tag but arm architecture

📏 Layers & Sizes

Version MicroBadger Layers (tag) MicroBadger Size (tag)

Version MicroBadger Layers (tag) MicroBadger Size (tag)

Version MicroBadger Layers (tag) MicroBadger Size (tag)

🚀 How to use this image

amd64/armhf/aarch64 (Alpine)

docker pull yobasystems/gitlab-runner

sudo docker run -d --name=gitlab-runner --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v /data/gitlab-runner/config:/etc/gitlab-runner yobasystems/gitlab-runner

Register runner with gitlab server

These can be passed at runtime as environment variables or by running the following command:

docker exec -it gitlab-runner /bin/sh

gitlab-runner register -n --url https://gitlab.url.domain.co.uk/ci --registration-token eRp938AHcv8JiHi4hUip --executor docker --docker-image "yobasystems/gitlab-runner-docker" --docker-privileged

Config file

Sometimes it is needed to add the following "/var/run/docker.sock:/var/run/docker.sock", in the example below you will see the placement.

concurrent = 1
check_interval = 0
[[runners]]
  name = "gitlab-runner001"
  url = "https://gitlab.url.domain.co.uk/ci"
  token = "eRp938AHcv8JiHi4hUip"
  executor = "docker"
  [runners.docker]
    tls_verify = false
    image = "yobasystems/gitlab-runner-docker:dind"
    privileged = true
    disable_cache = true
    volumes = ["/var/run/docker.sock:/var/run/docker.sock", "/cache"]
    shm_size = 0
  [runners.cache]

Usage

Use like you would any other base image:

version: '2'
services:
  gitlab-runner:
    privileged: true
    image: yobasystems/gitlab-runner
    stdin_open: true
    volumes:
    - /var/run/docker.sock:/var/run/docker.sock
    - /data/gitlab-runner/config:/etc/gitlab-runner
    tty: true

🔍 Image contents & Vulnerability analysis

PACKAGE NAME PACKAGE VERSION VULNERABILITIES

📚 Source Repositories

🐳 Container Registries

🔗 Links

💰 Donation

BMAC

BITCOIN

ETHEREUM