Skip to content

Commit

Permalink
add service gitlab-runner
Browse files Browse the repository at this point in the history
  • Loading branch information
colachg committed Oct 26, 2018
1 parent 88fe69f commit cca5bbf
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 2 deletions.
9 changes: 9 additions & 0 deletions gitlab-runner/README.md
@@ -0,0 +1,9 @@
# Quick Start

The quickest way to get start is [docker-compose](https://docs.docker.com/compose/)

`cd gitlab-runner;docker-compose up -d`

# More Info

https://docs.gitlab.com/runner/
9 changes: 9 additions & 0 deletions gitlab-runner/docker-compose.yml
@@ -0,0 +1,9 @@
version: "2"
services:
gitlab-multi-runner:
image: gitlab/gitlab-runner:alpine
container_name: gitlab-multi-runner
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- $PWD/config:/etc/gitlab-runner
restart: always
6 changes: 4 additions & 2 deletions gitlab/README.md
@@ -1,7 +1,9 @@
# Quick Start
# Quick Start

The quickest way to get start is [docker-compose](https://docs.docker.com/compose/)

`cd gitlab;docker-compose up -d`

# More Info
# More Info

https://github.com/sameersbn/docker-gitlab

0 comments on commit cca5bbf

Please sign in to comment.