会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
窃窃私语QAQ
博客园
首页
新随笔
联系
订阅
管理
2025年8月19日
nginx-docker-tcp-http
摘要: docker-compose version: "3" services: nginx: image: nginx restart: always container_name: nginx privileged: true ports: - 8014:8014 - 在这里是需要暴露的端口 volu
阅读全文
posted @ 2025-08-19 17:13 窃窃私语QAQ
阅读(5)
评论(0)
推荐(0)
2025年5月23日
springboot-netty创建TCP客户端
摘要: springboot创建TCP客户端 实现客户端向服务端发送数据,接收服务端的响应数据, 配置类,改下ip和端口即可用 import io.netty.bootstrap.Bootstrap; import io.netty.channel.ChannelFuture; import io.nett
阅读全文
posted @ 2025-05-23 23:18 窃窃私语QAQ
阅读(9)
评论(0)
推荐(0)
2025年5月22日
springboot动态添加定时任务
摘要: springboot动态添加定时任务 引用(感谢) https://blog.csdn.net/iT_MaNongking/article/details/145305954?utm_medium=distribute.pc_relevant.none-task-blog-2~default~bai
阅读全文
posted @ 2025-05-22 21:39 窃窃私语QAQ
阅读(24)
评论(0)
推荐(0)
2025年4月17日
docker-nuxus
摘要: docker-compose version: "3" services: nexus: image: sonatype/nexus3 restart: always container_name: nexus user: ${USER} privileged: true environment:
阅读全文
posted @ 2025-04-17 13:18 窃窃私语QAQ
阅读(43)
评论(0)
推荐(0)
2025年4月15日
docker安装milvus
摘要: docker-compose 安装 milvus 总共安装4个服务 etcd : 存储解析milvus的数据 minio : 文件服务器 milvus : 主要的向量数据库 attu : milvus的可视化界面工具 docker-compose 安装 其他3个服务不同版本差距不大, 但是不同版本的
阅读全文
posted @ 2025-04-15 18:13 窃窃私语QAQ
阅读(99)
评论(0)
推荐(0)
2025年4月11日
docker安装ollama,离线安装bge-m3等模型
摘要: 离线安装ollama 通过其他服务器docker下载ollama镜像(镜像地址参考我的另一份文章) # 保存镜像到本地 docker save -o ollama.tar docker.1ms.run/ollama/ollama:latest 将 ollama.tar 上传到指定服务器 # 加载镜像
阅读全文
posted @ 2025-04-11 19:05 窃窃私语QAQ
阅读(1371)
评论(0)
推荐(0)
2025年4月9日
docker可用镜像
摘要: https://docker.1ms.run https://docker.xuanyuan.me https://dislabaiot.xyz https://docker.sunzishaokao.com https://hub.rat.dev https://doublezonline.clo
阅读全文
posted @ 2025-04-09 11:34 窃窃私语QAQ
阅读(27)
评论(0)
推荐(0)
2024年9月23日
ssl证书
摘要: nginx配置 方案一 server{ listen 443 ssl; listen 7002 ssl; listen 9876 ssl; listen [::]:443 default ipv6only=on; listen [::]:7002 default ipv6only=on; liste
阅读全文
posted @ 2024-09-23 10:57 窃窃私语QAQ
阅读(24)
评论(0)
推荐(0)
2024年9月3日
minio-docker
摘要: docker-compose version: "3" services: minio: image: minio/minio:latest container_name: minio restart: always ports: - "9000:9000" - "9090:9090" volume
阅读全文
posted @ 2024-09-03 18:15 窃窃私语QAQ
阅读(28)
评论(0)
推荐(0)
2024年8月30日
docker-compose安装
摘要: docker-compose离线安装 版本对应 docker-compose 1.x 对应 docker engine 1.12及以上 docker-compose 2.x 对应 docker engine 20.10.0及以上 下载2.25版本的只有2.20版本以上支持include特性 sudo
阅读全文
posted @ 2024-08-30 16:54 窃窃私语QAQ
阅读(83)
评论(0)
推荐(0)
下一页
公告