Changed to being off of alpine until I get my CI working

This commit is contained in:
William Miceli
2019-03-15 12:56:51 -04:00
parent 83a9d3ff35
commit 01abb1b212

View File

@@ -2,7 +2,7 @@ version: '2'
services: services:
gitlab-runner-config: gitlab-runner-config:
image: gitlab/gitlab-runner:alpine image: gitlab/gitlab-runner:latest
command: command:
- register - register
- --non-interactive - --non-interactive
@@ -13,7 +13,7 @@ services:
- --executor - --executor
- "docker" - "docker"
- --docker-image - --docker-image
- docker:stable - docker:latest
- --docker-privileged - --docker-privileged
{{- if .Values.GITLAB_RUNNER_DESCRIPTION}} {{- if .Values.GITLAB_RUNNER_DESCRIPTION}}
- --description - --description
@@ -37,10 +37,9 @@ services:
{{- end}} {{- end}}
traefik.enable: false traefik.enable: false
volumes: volumes:
# - /var/run/docker.sock:/var/run/docker.sock
- /RancherCattle/${DATA_DIR}:/etc/gitlab-runner - /RancherCattle/${DATA_DIR}:/etc/gitlab-runner
gitlab-runner: gitlab-runner:
image: gitlab/gitlab-runner:alpine image: gitlab/gitlab-runner:latest
command: command:
- run - run
{{- if .Values.GITLAB_LINK}} {{- if .Values.GITLAB_LINK}}
@@ -57,5 +56,4 @@ services:
privileged: true # Required for Docker-in-Docker privileged: true # Required for Docker-in-Docker
restart: on-failure restart: on-failure
volumes: volumes:
# - /var/run/docker.sock:/var/run/docker.sock
- /RancherCattle/${DATA_DIR}:/etc/gitlab-runner - /RancherCattle/${DATA_DIR}:/etc/gitlab-runner