Skip to content
Kang Jinwon edited this page Aug 12, 2015 · 3 revisions

GitLab CI guide


Allow other docker images to run test

Edit /srv/gitlab-runner/config.toml like this:

[runners.docker]
  image = "tsdn/gitlab-ci-box"
  privileged = false
  volumes = ["/cache"]
  allowed_images = ["tsdn/*"]

ref: http://doc.gitlab.com/ci/docker/using_docker_images.html#how-to-enable-overwriting

Clone this wiki locally