我创build了一个关于php的多容器应用程序。 当我修改php文件时,我可以看到浏览器中的更改。 但是,当我修改静态文件,如CSS和JS,浏览器没有改变。 以下是我的Dockerfile代码:
Dockerfile
`FROM nginx:1.8 `ADD default.conf /etc/nginx/conf.d/default.conf `ADD nginx.conf /etc/nginx/nginx.conf `WORKDIR /Code/project/ `RUN chmod -R 777 /Code/project/ `VOLUME /Code/project
default.conf
`server { listen 80; server_name localhost; root /Code/project/public; index index.html index.htm index.php; #charset koi8-r; #access_log /var/log/nginx/log/host.access.log main; location / { try_files $uri $uri/ /index.php?$query_string; } #error_page 404 /404.html; # redirect server error pages to the static page /50x.html # #error_page 500 502 503 504 /50x.html; #location = /50x.html { # root /usr/share/nginx/html; #} # proxy the PHP scripts to Apache listening on 127.0.0.1:80 # #location ~ \.php$ { # proxy_pass http://127.0.0.1; #} # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 # location ~ \.php$ { try_files $uri /index.php =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass fpm:9000; #fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } # deny access to .htaccess files, if Apache's document root # concurs with nginx's one # #location ~ /\.ht { # deny all; #} }
nginx.conf
user root; worker_processes 8; error_log /var/log/nginx/error.log warn; pid /var/run/nginx.pid; events { worker_connections 1024; } http { include /etc/nginx/mime.types; default_type application/octet-stream; log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for"'; access_log /var/log/nginx/access.log main; sendfile on; #tcp_nopush on; keepalive_timeout 65; client_max_body_size 20m; #gzip on; include /etc/nginx/conf.d/*.conf; }`
泊坞窗,compose.yml
webphp: image: index.alauda.cn/chuanty/local_php #image: index.alauda.cn/chuanty/local_nginx:snapshot ports: - "9000:9000" volumes: - .:/Code/project links: - cache:cache - db:db - es:localhost extra_hosts: - "chaunty.taurus:192.168.99.100" cache: image: redis ports: - "6379:6379" db: #image: mysql image: index.alauda.cn/alauda/mysql ports: - "3306:3306" environment: MYSQL_ROOT_PASSWORD: chuantaiyidev MYSQL_USER: cty MYSQL_PASSWORD: chuantaiyidev MYSQL_DATABASE: taurus es: image: index.alauda.cn/chuanty/local_elasticsearch ports: - "9200:9200" - "9300:9300" server: #image: index.alauda.cn/ryugou/nginx image: index.alauda.cn/chuanty/local_nginx:1.1 ports: - "80:80" - "443:443" links: - webphp:fpm volumes_from: - webphp:rw
我想你的问题是在你的nginx.conf中的“sendfile on”。
为了开发目的,尝试在服务器块的server-directive中设置它:
server { ... sendfile off; }
这将强制重新加载静态文件,如CSS和JS。 nginx不会从内存加载文件。
http://nginx.org/en/docs/http/ngx_http_core_module.html#sendfile
我真的希望你不要复制配置文件到一个图像!
Docker镜像应该是不可变的,因此在部署配置文件(依赖于变量的很多环境)应该传递给/容器共享感谢docker run
选项-v|--volume
。
如果你想在修改静态文件的时候看到任何改变,你需要docker build
,然后docker compose up
在每次修改时都 docker compose up
,以便实际改变网页。 你可能不需要(清楚)。 我建议你使用共享目录(通过-v
选项)。
一种选择是将修改的静态文件直接复制到Docker容器:
docker cp web/static/main.js container_name:/usr/src/app/static/main.js
web/static
是主机上的静态目录 main.js
是修改后的文件 container_name
是可以使用docker ps
找到的容器的名称 /usr/src/app/static
是Docker容器中的静态目录 如果你想确定你的静态文件在你的Docker容器的确切位置,你可以使用docker exec -t -i container_name /bin/bash
来浏览它的目录结构。