You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+10-1
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,7 @@
36
36
* Get the coordinator URL and registration tokens:
37
37
* For shared runners: <http://your/gitlab/instance/admin/runners>
38
38
* For project-specific runners: <http://your/gitlab/project/settings/ci_cd>
39
-
* Use [Docker as the executor](https://docs.gitlab.com/runner/executors/docker.html)
39
+
* Use [Docker as the executor](https://docs.gitlab.com/runner/executors/docker.html) (see [ISSUES](#issues) section on possible disk space issue)
40
40
* Set project-specific [tags](https://docs.gitlab.com/ee/ci/runners/#using-tags)
41
41
* Configure the CI configuration in [.gitlab-ci.yml](./gitlab-ci.yml)
42
42
* Set which Docker [image](https://docs.gitlab.com/runner/executors/docker.html#the-image-keyword) and [services](https://docs.gitlab.com/runner/executors/docker.html#the-services-keyword) to use
@@ -93,6 +93,15 @@
93
93
* [Caching general build artifacts between stages](https://gitlab.com/gitlab-org/gitlab-runner/issues/336)
94
94
* [Force all pipeline jobs to execute on same concurrent runner](https://gitlab.com/gitlab-org/gitlab-ce/issues/30060)
95
95
* The current workaround now is to use `before_script` to build and a job for tests
96
+
* The `gitlab-runner` is leaving a lot of `-cache-` containers/volumes
97
+
* See a [discussion](https://gitlab.com/gitlab-org/gitlab-runner/issues/2980#note_106845694) of this behavior here
98
+
* Possible solutions:
99
+
* Manually regularly run `docker system prune`
100
+
* Setup a `cron` job `docker system prune`
101
+
```
102
+
# Cleanup docker containers/volumes every 3am every monday
103
+
0 3 * * 1 /usr/bin/docker system prune --filter "label=dangling"
0 commit comments