我正在使用Ubuntu 18.04将docker userns-remap更改为我的主机帐户。我无法从docker文件构建v8js。
我的帐户名为Cherry,
我的subuid
cherry:100000:65536 cherry:1000:65536
我的子类别
cherry:100000:65536 cherry:1000:65536
我的daemon.json
{
"userns-remap": "cherry"
}
我的Dockerfile
FROM php:7.2.7-zts-stretch
RUN apt-get install git python libglib2.0-dev wget -y
WORKDIR /tmp
RUN git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git
ENV PATH /tmp/depot_tools:$PATH
WORKDIR /usr/local/src
RUN fetch v8
如果我不更改userns-remap,则可以正常工作。 但是,如上所述更改userns-reamp会导致fetch v8命令中出现“无法更改所有权”问题。有什么问题吗?