Created
July 2, 2019 15:05
-
-
Save pvsousalima/d88248bf92067d7bf3868f959dfbd649 to your computer and use it in GitHub Desktop.
registering a runner and running
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker run --rm -v ~/gitlab-runner/config:/etc/gitlab-runner gitlab/gitlab-runner register \ | |
--non-interactive \ | |
--executor "shell" \ | |
--docker-image alpine:latest \ | |
--url "https://gitlab.com/" \ | |
--registration-token "" \ | |
--description "docker-runner" \ | |
--tag-list "develop" \ | |
--run-untagged="true" \ | |
--locked="false" \ | |
--access-level="not_protected" | |
docker run --rm -v ~/gitlab-runner/config:/etc/gitlab-runner gitlab/gitlab-runner run | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment