我正在使用gitlab-ci-multi-runner与docker容器.一切都进行得很好,但是Docker容器不会保留作曲者缓存,所以每个运行的作曲者一次又一次地下载依赖关系,这需要大量的时间.有没有办法配置gitlab-ci-runner docker容器来保留作曲者缓存或在保存作曲家缓存的每个运行时挂载一个卷?
最佳答案
您可以修改作曲者缓存路径,并将其写入Docker卷.
原文链接:https://www.f2er.com/docker/437066.html该存储是持久的,可以跨容器共享.
引用:
> https://gitlab.com/gitlab-org/gitlab-ci-multi-runner/blob/master/docs/configuration/advanced-configuration.md#volumes-in-the-runnersdocker-section
> https://docs.docker.com/userguide/dockervolumes/