GitLab-CI Multi Runner php composer cache(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/
这篇关于GitLab-CI Multi Runner php 作曲家缓存的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:GitLab-CI Multi Runner php 作曲家缓存
基础教程推荐
- 学说 dbal querybuilder 作为准备好的语句 2022-01-01
- 在PHP中根据W3C规范Unicode 2022-01-01
- 如何在 Laravel 中使用 React Router? 2022-01-01
- PHP PDO MySQL 查询 LIKE ->多个关键词 2021-01-01
- YouTube API v3 点赞视频,但计数器不增加 2022-01-01
- 有什么方法可以用编码 UTF-8 而不是 Unicode 返回 PHP`json_encode`? 2021-01-01
- Cron Jobs 调用带有变量的 PHP 脚本 2022-01-01
- 如何替换eregi() 2022-01-01
- PHP 类:全局变量作为类中的属性 2021-01-01
- 如何在 Laravel 5.3 注册中添加动态下拉列表列? 2021-01-01
