gpt4 book ai didi

Dockerfile "RUN chmod"未生效

转载 作者:行者123 更新时间:2023-12-02 18:14:10 26 4
gpt4 key购买 nike

其他一切都生效但权限没有改变,我错过了什么吗?

FROM joomla:3.9-php7.2-apache

RUN apt-get update \
&& apt-get install -y apt-utils vim curl

COPY ./joomla_html /var/www/html

RUN chmod -R 765 /var/www/html/

RUN chown -R www-data. /var/www/html/
RUN chmod -R 777 /var/www/html/tmp
RUN chmod -R 777 /tmp
RUN chmod -R 777 /var/www/html/modules
RUN chmod -R 777 /var/www/html/components
RUN chmod -R 777 /var/www/html/administrator/logs
RUN chmod -R 777 /var/www/html/images
RUN chmod -R 777 /var/www/html/uploads

COPY ./docker/php.ini /usr/local/etc/php/conf.d/php-extras.ini

EXPOSE 80

这就是我得到的,每个文件都有 1000:1000 的权限,我需要它是 www-data

ls -la/var/www/html 的输出是
total 144
drwxr-xr-x 19 1000 1000 4096 May 8 18:53 .
drwxr-xr-x 1 root root 4096 May 8 02:30 ..
drwxr-xr-x 25 1000 1000 4096 May 8 18:53 components
drwxr-xr-x 6 1000 1000 4096 May 8 18:53 images
drwxr-xr-x 68 1000 1000 4096 May 8 18:53 modules
drwxr-xr-x 2 1000 1000 4096 May 8 18:53 tmp
drwxr-xr-x 2 1000 1000 4096 May 8 18:53 uploads

最佳答案

该目录被定义为上游卷:https://github.com/joomla/docker-joomla/blob/d34ff24288dfb5b27a167f870f1fcca56077be78/php7.2/apache/Dockerfile#L64

VOLUME /var/www/html

无法使用 RUN 命令修改卷。它们在具有卷的临时容器中开始,并且只保存对容器的更改,而不保存卷。

您可以尝试要求上游存储库更改其镜像以从 Dockerfile 中删除卷定义。或者,您可以拉取他们的 repo 并构建您自己的基本镜像版本,而无需该卷。这些都不会阻止您稍后使用该目录中的卷运行容器。

否则,如果要扩展图像并使用 RUN 命令进行更改,则需要将文件保存在另一个目录中。您还可以有一个入口点,在容器启动时将这些文件复制到/var/www/html。

您也可以考虑多阶段构建,在第一阶段修复权限,然后在发布阶段将文件直接复制到卷中。正如您所注意到的,COPY 仍然适用于卷。它不是用临时容器实现的,因此可以将文件直接放置在图像文件系统中。

关于Dockerfile "RUN chmod"未生效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56045077/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com