我想更新我的.conf文件,但无论我做什么都不会更新?解决方案是什么?
dockerfile现在很简单:
FROM nginx:latest
COPY ./default.conf /etc/nginx/conf.d/default.conf
只是想更改根文件夹,因此需要更新它。
server {
listen 80 default_server;
root /var/www/html/public;
index index.html index.php;
charset utf-8;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt { access_log off; log_not_found off; }
access_log off;
error_log /var/log/nginx/error.log error;
sendfile off;
client_max_body_size 100m;
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass php:9000;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_intercept_errors off;
fastcgi_buffer_size 16k;
fastcgi_buffers 4 16k;
}
location ~ /\.ht {
deny all;
}
}
答案 0 :(得分:0)
我可以看到您的Dockerfile没有错;当我用一个基本的conf文件复制它时,它都按预期工作:
> echo 'FROM nginx:latest' > Dockerfile
> echo 'COPY ./default.conf /etc/nginx/conf.d/default.conf' >> Dockerfile
> echo 'server {}' > default.conf
> docker build -t temp .
构建正确,文件将复制到图像:
> docker run temp cat /etc/nginx/conf.d/default.conf
server {}
docker build
命令的输出是什么?