We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33cacb2 commit 3ac5bedCopy full SHA for 3ac5bed
defaults/main.yml
@@ -27,3 +27,5 @@ gitlab_runner_package_manager: pip
27
# registration_token: mysecureprojecttoken
28
# - gitlab_url: https://my.gitlab.url
29
# registration_token: mysecureinstancetoken
30
+
31
+timezone_name: "America/Toronto"
templates/docker-compose.yml.j2
@@ -3,6 +3,8 @@ services:
3
runner:
4
image: gitlab/gitlab-runner:{{ gitlab_runner_version }}
5
container_name: {{ gitlab_runner_container_name }}
6
+ environment:
7
+ TZ: {{ timezone_name }}
8
restart: always
9
volumes:
10
- ./conf:/etc/gitlab-runner
0 commit comments