Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pgolm/docker-gitlab-ci-runner
Dockerfiles to build gitlab-ci-runner
https://github.com/pgolm/docker-gitlab-ci-runner
Last synced: 3 days ago
JSON representation
Dockerfiles to build gitlab-ci-runner
- Host: GitHub
- URL: https://github.com/pgolm/docker-gitlab-ci-runner
- Owner: pgolm
- Created: 2013-11-20T12:33:01.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2014-01-08T12:24:01.000Z (about 11 years ago)
- Last Synced: 2024-11-22T20:33:02.447Z (2 months ago)
- Language: Shell
- Homepage:
- Size: 138 KB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# gitlab-ci-runner Dockerfile
Dockerfiles to build gitlab-ci-runner images
## Build
* Pull Baseimage
```
$ docker pull pgolm/docker-gitlab-ci-runner
```or:
* Build by your own
```
$ docker build -t pgolm/docker-gitlab-ci-runner .
```* Setup Runner plattform dependencies in Dockerfile.runner
* Build your runner
```
docker build -t runner - < Dockerfile.runner
```## Start
Start your container:
```
docker run -d runner -e CI_SERVER_URL=https://ci.example.com -e REGISTRATION_TOKEN=token -e GITLAB_SERVER_FQDN=gitlab.example.com
```