Skip to content

Commit c35eaf8

Browse files
author
gino
committed
Add troubleshooting steps for the Docker executor cache disk space issue
1 parent 8d3c8a4 commit c35eaf8

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

README.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
* Get the coordinator URL and registration tokens:
3737
* For shared runners: <http://your/gitlab/instance/admin/runners>
3838
* 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)
4040
* Set project-specific [tags](https://docs.gitlab.com/ee/ci/runners/#using-tags)
4141
* Configure the CI configuration in [.gitlab-ci.yml](./gitlab-ci.yml)
4242
* 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 @@
9393
* [Caching general build artifacts between stages](https://gitlab.com/gitlab-org/gitlab-runner/issues/336)
9494
* [Force all pipeline jobs to execute on same concurrent runner](https://gitlab.com/gitlab-org/gitlab-ce/issues/30060)
9595
* 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"
104+
```
96105
97106
## DOCUMENTATION
98107

0 commit comments

Comments
 (0)