Skip to content
This repository has been archived by the owner on Aug 12, 2020. It is now read-only.

Latest commit

 

History

History
34 lines (23 loc) · 862 Bytes

README.md

File metadata and controls

34 lines (23 loc) · 862 Bytes

Docker GitLab Runner

A Dockerized GitLab Runner that automatically registers with the GitLab CI Server

Dependencies

This version of GitLab Runner requires

  • Docker

Installation

The Docker image can be run directly from Docker Hub

docker run --detached \
    --name=gitlab-runner
    --restart=always \
    --environment REGISTRATION_TOKEN=XXXXXXXXXX \
    --environment CI_SERVER_URL=http://gitlab.mydomain.com \
    --environment RUNNER_EXECUTOR=shell \
    --environment RUNNER_SHELL=bash \
    --volume=/etc/gitlab-runner:/etc/gitlab-runner

License

Please see LICENSE

Acknowledgements

This GitLab Runner was derived from GitLab's Runner container.

Authors

Sean Gillespie