GitLab-CI Multi Runner php 作曲家缓存

我将 gitlab-ci-multi-runner 与 docker 容器一起使用.一切都很顺利,但是 docker 容器不会保留 composer 缓存,因此在每次运行时 composer 都会一次又一次地下载依赖项,这需要很多时间.有没有办法配置 gitlab-ci-runner docker 容器以保持 composer 缓存或在 composer 缓存的每次运行时挂载一个卷保留?

I'm using gitlab-ci-multi-runner with docker containers. Everything is going fine, but docker containers don't keep the composer cache so in every run composer downloads dependencies again and again, which takes a lot of time. Is there any way to configure gitlab-ci-runner docker container to keep the composer cache or mount a volume on each run where the composer cache is kept?

推荐答案

您可以修改 composer 缓存路径并将内容写入 docker 卷.

You could modify the composer cache path and write the stuff to a docker volume.

该存储是持久的,可以跨容器共享.

That storage is persistent and can be shared across containers.

参考:

  • https://gitlab.com/gitlab-org/gitlab-runner/blob/master/docs/configuration/advanced-configuration.md#volumes-in-the-runnersdocker-section
  • https://docs.docker.com/engine/admin/volumes/volumes/

相关文章