请教一个问题…关于怎么修改 homeland 部署后的 favicon,使用 docker 部署
因为暂时在虚拟机上测试,所以app.local.env
中domain
直接配置成了虚机 IP
运行起来之后 后台全局设置 在custom_head_html
里添加一行关于 favicon 的代码
确实可以达到效果 但是访问虚机IP/favicon.ico
依旧显示 ruby 的红宝石 logo
查看了homeland
的源码,在homeland/public
下有个favicon.ico
的文件
查看了homeland-docker
的源码,在homeland-docker/images/homeland/Dockerfile
下
引用了最新版本的代码
git clone --branch v$HOMELAND_VERSION https://github.com/ruby-china/homeland.git --depth 1
所以我
homeland/public
覆盖掉原来的文件sudo make install
之前,修改了 Dockerfile 引用自己的 repo
git clone --branch gitzhou https://github.com/gitzhou/homeland.git --depth 1
然而…效果没有什么变化
进入到 container 里查看…favicon 文件仍然是原来的
并且git log
输出来看,build 出来的 homeland image 好像并没有使用我的代码分支
请教各位大佬 我的思路是不是有问题…或者哪里操作出了错 感谢各位