找不到PHP Docker供应商Autoload.php

时间:2019-05-21 22:53:41

标签: php docker nginx composer-php dockerfile

我正在尝试为PHP服务设置Dockerfile。使用Nginx服务器在Docker容器中提供PHP脚本,但该脚本给了我vendor / autoload.php找不到错误。

我已经尝试过多次更改Dockerfile,但是vendor / autoload.php错误仍然存​​在。

这是 Dockerfile

FROM composer as builder

RUN mkdir -p /usr/app/php-services
WORKDIR /usr/app/php-services
#copy composer file
COPY composer.json .


RUN composer install

#copy php-scripts to /usr/app/php-services
COPY . .


FROM nginx:alpine

COPY --from=builder /usr/app/php-services /usr/app/php-services
COPY ./phpdocker/nginx/nginx.conf /etc/nginx/conf.d/default.conf

#check if vendor has autoload file and it exists!!!
RUN ls /usr/app/php-services/vendor

EXPOSE 8000


脚本应该可以正常工作,但是每当我运行docker log时,它都会说。 enter image description here

这是 nginx.conf 文件

server {
listen 8000;


access_log /var/log/nginx/application.access.log;


root /usr/app/php-services;

location / {
    try_files $uri /index.php$is_args$args;
}

location ~ \.php$ {
    fastcgi_pass php-fpm:9000;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    fastcgi_param PHP_VALUE "error_log=/var/log/nginx/application_php_errors.log";
    fastcgi_buffers 16 16k;
    fastcgi_buffer_size 32k;
    include fastcgi_params;
}
}

我几乎尝试了所有事情,却不知道为什么会这样。我在这里做错了什么?我的nginx.conf文件有问题吗?

1 个答案:

答案 0 :(得分:0)

很抱歉,上次答复是我误解了这个问题。

但是,我能够构建一个类似的容器,但无法重现该错误。您所添加的php脚本可能与本文无关。尽管可以使用Dockerfile + nginx.conf的修改后的副本来获得类似的容器构建。我还在Docker文件中添加了一些用于故障排除的调试,并创建了启动/构建脚本。

我编辑了Dockerfile,使其具有以下功能。如果需要,这将添加设置755权限,列出一些有问题的目录和您的日志。如果需要,可以将该输出发布到评论中。

float imageCenterY = image_height > displayMetrics.heightPixels/2 ? 0 : dpHeight/2

然后编辑nginx.conf以使其具有以下内容。添加了解析程序信息(不确定是否适用于您),包括上游属性,try_files(包括fastcgi的代码片段)。

Matrix matrix_ = new Matrix();
matrix_.postTranslate(imageCenterX, imageCenterY);
ivImageView.setImageMatrix(matrix_);

然后创建一个Shell脚本以启动构建并报告一些调试信息。将其添加到Docker主机上的Dockerfile旁边,使用chmod + x run-container.sh使它可执行,然后使用./run-container.sh $ PORTNUM运行它。即./run-container.sh 8000

FROM composer as builder
RUN mkdir -p /usr/app/php-services 
WORKDIR /usr/app/php-services
COPY composer.json . 
RUN composer install
#copy php-scripts to /usr/app/php-services
COPY . .
COPY php.ini /usr/app/php-services
FROM nginx:alpine
COPY --from=builder /usr/app/php-services /usr/app/php-services
COPY nginx.conf /etc/nginx/conf.d/default.conf 
COPY php.ini .
#check if vendor has autoload file and it exists!!!
RUN chmod 755 -R /usr/app/php-services;ls -lrt /etc/nginx/ /var/log /usr/app/php-services/  /usr/app/php-services/vendor /usr/app/php-services/vendor/twitter.php;/var/log/nginx/application_php_errors.log | tee -a shellcheck.log
    #CMD ["ls -la /usr/app/php-services/vendor"]
EXPOSE 8000

请让我知道是否有任何一种对您有用,出于某种原因,您正在期待我没有的twitter.php,这不是问题。那是您要从该文件夹复制到容器中的东西吗?