文章预览
以下文章来源Java架构师技术,回复”Spring“获惊喜礼包 来源:小太阳 链接:juejin.cn/post/7407384172049891379 上一篇推文: 刚刚,微信也接入DeepSeek了 大家好,我是Java架构师 1、容器安装kkfileviewer 1.1 下载文件 这里以kkfile 4.4.0-beta版本为例 下载kkfile安装包及Dockerfile: https://codeup.aliyun.com/6254dee9a923b68581caaf50/kkfileviewer.git 1.2、构建镜像 git clone https://codeup.aliyun.com/6254dee9a923b68581caaf50/kkfileviewer.git cd kkfileviewer docker build -t kkfileview:v4.4.0 . 1.3、 启动kkfileviewer docker run -d -p 8012:8012 --name kkfileview kkfileview:v4.4.0 1.4、 访问测试 http://you-ip:8012 2、springboot集成minio 2.1 pom.xml添加依赖 < dependency > < groupId > io.minio groupId > < artifactId > minio artifactId > < version > 8.5.11 version > dependency > 2.2、 配置 # minio 文件存储配置信息 minio: endpoint: http://xxxxx:9000 acc
………………………………