Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/flaviostutz/gitlab-runner
This is an extension of official Gitlab Runner container with auto registration on startup through TOKEN on ENV
https://github.com/flaviostutz/gitlab-runner
cd ci gitlab-ci gitlab-docker gitlab-runner
Last synced: 3 months ago
JSON representation
This is an extension of official Gitlab Runner container with auto registration on startup through TOKEN on ENV
- Host: GitHub
- URL: https://github.com/flaviostutz/gitlab-runner
- Owner: flaviostutz
- License: mit
- Created: 2018-06-03T18:40:50.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-06-16T05:01:46.000Z (over 3 years ago)
- Last Synced: 2024-10-10T23:22:28.307Z (3 months ago)
- Topics: cd, ci, gitlab-ci, gitlab-docker, gitlab-runner
- Language: Shell
- Size: 15.6 KB
- Stars: 2
- Watchers: 2
- Forks: 5
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gitlab runner
[](https://hub.docker.com/r/flaviostutz/gitlab-runner)
[](https://hub.docker.com/r/flaviostutz/gitlab-runner)This is an extension of official Gitlab Runner container that uses environment properties to register the container on startup.
### Usage
docker-compose.yml```
version: '3.5'services:
gitlab-runner:
image: flaviostutz/gitlab-runner
volumes:
- /var/run/docker.sock:/var/run/docker.sock
environment:
- GITLAB_URL=https://gitlab.com
- REGISTRATION_TOKEN=[YOUR_TOKEN_HERE]
- NAME=Testing name with space
- TAG_LIST=tag-1,tag-2
```