Bugfix testing

This commit is contained in:
William Miceli
2019-07-27 15:25:39 -04:00
parent 8e55226ce8
commit 9a2a40eac2
2 changed files with 14 additions and 6 deletions

View File

@@ -41,7 +41,9 @@ services:
traefik.enable: false
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- GitLab-Runner:/etc/gitlab-runner
- /etc/localtime:/etc/localtime:ro # Syncronize time of container with the host system
- /etc/timezone:/etc/timezone:ro # Syncronize timezone of container with the host system
- /Persistent/${DATA_DIR}:/etc/gitlab-runner
gitlab-runner:
image: gitlab/gitlab-runner:alpine # Alpine Linux image is designed to use only Docker as the method of spawning runners
command:
@@ -61,8 +63,6 @@ services:
restart: always
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- GitLab-Runner:/etc/gitlab-runner
volumes:
GitLab-Runner:
driver: local
- /etc/localtime:/etc/localtime:ro # Syncronize time of container with the host system
- /etc/timezone:/etc/timezone:ro # Syncronize timezone of container with the host system
- /Persistent/${DATA_DIR}:/etc/gitlab-runner

View File

@@ -65,3 +65,11 @@ catalog:
# default: ""
required: false
type: string
- variable: "DATA_DIR"
label: "Data Directory"
description: |
The directory to store persistent data for the stack.
default: "Personal/GitLab-Runner"
required: true
type: string