在docker

时间:2016-09-22 22:52:09

标签: docker ccache

我正在努力将C ++项目的构建转移到docker镜像中。该图像将由Jenkins工作构建和推送。在docker之前,我大量使用ccache来加速我在Jenkins上的构建,特别是在构建几乎没有变化的情况下。 docker的问题在于构建现在在隔离的环境中运行,因此我无法再从ccache中受益。有没有办法在仍然利用ccache的同时构建一个短暂的容器内部?

2 个答案:

答案 0 :(得分:10)

您仍然可以将ccache与您的构建结合使用。

使用以下命令创建Data Volume以允许数据在编译/构建之间保留:

$ docker create -v /mnt/ccache:/ccache --name ccache debian

然后使用--volumes-from命令行选项创建“安装”上面创建的数据容器的容器。

$ docker run -e CCACHE_DIR=/ccache --volumes-from ccache -it debian

现在你将进入debian容器的shell,可以安装所需的应用程序并测试ccache:

root@15306d02505a:/# apt-get update && apt-get install -y gcc ccache    

现在,您可以检查缓存,它将按预期为空:

root@15306d02505a:/# ccache -s
cache directory                     /ccache
cache hit (direct)                     0
cache hit (preprocessed)               0
cache miss                             0
files in cache                         0
cache size                             0 Kbytes
max cache size                       1.0 Gbytes

数据卷将保持不变,因此即使在容器终止后,缓存仍然存在。挂载卷的未来构建(并指定-e ENV变量)将使用缓存。

然后创建一个简单的应用程序,运行它,然后再次检查缓存:

root@15306d02505a:/# cat > foo.c << __EOF__
 int main(int argc, char **argv)
 {
     return 0;
 }
 __EOF__

root@15306d02505a:/# PATH=/usr/lib/ccache:$PATH gcc -o foo.o -c foo.c
root@15306d02505a:/# ccache -s
cache directory                     /ccache
cache hit (direct)                     1
cache hit (preprocessed)               0
cache miss                             1
files in cache                         2
cache size                             8 Kbytes
max cache size                       1.0 Gbytes

您可以看到现在已填充缓存,并且进一步构建将因此而看到性能改进。

数据卷将保持不变,因此即使在容器终止后,缓存仍然存在。挂载卷的未来版本(并指定-e ENV变量)将使用缓存。

这篇博文很好地解释了它:

Using Ccache with Docker

答案 1 :(得分:1)

OK,如所承诺。

前提条件

  1. 使用Docker 18.06或更高版本

  2. 在客户端和服务器上(在撰写本文时)以实验模式运行

设置实验模式

服务器: 我创建了以下systemd覆盖文件:

cat /etc/systemd/system/docker.service.d/override.conf
[Service]
ExecStart=
ExecStart=/usr/bin/dockerd --experimental -H fd:// 

然后我做了一个systemctl daemon-reload ; systemctl restart docker.service

您需要在客户端设置和env变量 export DOCKER_BUILDKIT=1

Docker文件

这是docker文件的基础。我正在构建php映像,但是您可以构建任何所需的文件。第一行注释的关键部分(需要告诉docker以实验模式解析文件),以及--mount=type=cache,target=/ccache/选项。这将拉入构建阶段的缓存文件夹。确保将其放在触发编译的每条RUN行上

# syntax = docker/dockerfile:experimental
FROM php:7.3-fpm-stretch

# Create app directory
WORKDIR /usr/src/app

# setup locales
RUN apt update && \
  apt install -y locales && \
  sed -i -e 's/# en_GB.UTF-8 UTF-8/en_GB.UTF-8 UTF-8/' /etc/locale.gen && \
  locale-gen

ENV LANGUAGE=en_GB.UTF-8
ENV LANG=en_GB.UTF-8
ENV LC_ALL=en_GB.UTF-8
ENV CCACHE_DIR=/ccache

RUN apt update ; apt install -yq \
        git \
        cloud-guest-utils \
        iproute2 \
        libxml2-dev \
        libxslt1-dev \
        libmemcached-dev \
        libgd-dev \
        libzip-dev \
        libmemcached-dev \
        ccache \
        awscli


# use ccache (make it appear in path earlier then /usr/bin/gcc etc)
RUN for p in gcc g++ cc c++; do ln -vs /usr/bin/ccache /usr/local/bin/$p;  done

# prod format
RUN --mount=type=cache,target=/ccache/ docker-php-source extract && \
    docker-php-ext-install \
    intl \
    bcmath  \
    calendar \
    exif \
    gd \
    gettext \
    mysqli \
    opcache \
    pcntl \
    pdo_mysql \
    shmop \
    soap \
    sockets \
    sysvmsg \
    sysvsem \
    sysvshm \
    xsl \
    zip \
  && \
  docker-php-source delete
RUN --mount=type=cache,target=/ccache/ ccache -s

样本输出

我正在使用--progress plain标志运行构建,因为实验中的输出非常不同

#25 [16/16] RUN --mount=type=cache,target=/ccache/ ccache -s 
#25 digest: sha256:98c661a0404c71176a4bbf7d02123184524a784fabb2575d5210da088f16ee3a 
#25 name: "[16/16] RUN --mount=type=cache,target=/ccache/ ccache -s" 
#25 started: 2019-07-01 09:35:15.158199623 +0000 UTC 
#25 0.468 cache directory /ccache 
#25 0.468 primary config /ccache/ccache.conf 
#25 0.468 secondary config (readonly) /etc/ccache.conf 
#25 0.468 cache hit (direct) 2450 
#25 0.468 cache hit (preprocessed) 152 
#25 0.468 cache miss 590 
#25 0.468 cache hit rate 81.52 % 
#25 0.468 called for link 163 
#25 0.468 called for preprocessing 1011 
#25 0.468 compile failed 33 
#25 0.468 preprocessor error 3 
#25 0.468 bad compiler arguments 188 
#25 0.468 autoconf compile/link 943 #25 0.468 no input file 554 
#25 0.468 cleanups performed 0 
#25 0.468 files in cache 1288 #25 0.468 cache size 20.6 MB
#25 0.468 max cache size 5.0 GB 
#25 completed: 2019-07-01 09:35:15.732702254 +0000 UTC 
#25 duration: 574.502631ms

更多阅读内容: https://github.com/moby/buildkit/blob/master/frontend/dockerfile/docs/experimental.md https://docs.docker.com/engine/reference/commandline/dockerd/#description