惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Google DeepMind News
Google DeepMind News
Stack Overflow Blog
Stack Overflow Blog
Hugging Face - Blog
Hugging Face - Blog
博客园_首页
T
The Blog of Author Tim Ferriss
博客园 - 叶小钗
N
Netflix TechBlog - Medium
腾讯CDC
C
Check Point Blog
P
Proofpoint News Feed
Engineering at Meta
Engineering at Meta
GbyAI
GbyAI
S
SegmentFault 最新的问题
F
Fortinet All Blogs
美团技术团队
U
Unit 42
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 司徒正美
F
Full Disclosure
Recorded Future
Recorded Future
D
DataBreaches.Net
博客园 - 【当耐特】
Martin Fowler
Martin Fowler
J
Java Code Geeks
I
InfoQ
Y
Y Combinator Blog
A
About on SuperTechFans
AI
AI
爱范儿
爱范儿
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
Forbes - Security
Forbes - Security
W
WeLiveSecurity
M
MIT News - Artificial intelligence
雷峰网
雷峰网
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
Simon Willison's Weblog
Simon Willison's Weblog
Schneier on Security
Schneier on Security
The GitHub Blog
The GitHub Blog
Security Archives - TechRepublic
Security Archives - TechRepublic
aimingoo的专栏
aimingoo的专栏
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
G
GRAHAM CLULEY
Know Your Adversary
Know Your Adversary
Latest news
Latest news
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
D
Docker
Recent Commits to openclaw:main
Recent Commits to openclaw:main
量子位
V2EX - 技术
V2EX - 技术
Project Zero
Project Zero

魚丸包粗麵

Claw Cloud Run 免费云服务容器-魚丸包粗麵 VirtualHere 非破解服务端,使用注册机生成序列号注册码-魚丸包粗麵 群晖进阶玩法:Advanced Media Extention-魚丸包粗麵 群晖进阶玩法:Surveillence Station-魚丸包粗麵 群晖进阶玩法:Active Backup for Business 套件激活-魚丸包粗麵 安装SideStore自签软件 - 支持iOS14+-魚丸包粗麵 群晖进阶玩法:Docker全图形界面部署Rabbit-魚丸包粗麵 Web3.0邮箱应用-Skiff注册-魚丸包粗麵 群晖进阶玩法:Docker全图形界面部署RustDesk服务端-魚丸包粗麵 群晖进阶玩法:Docker全图形界面部署Alist-魚丸包粗麵 GO项目打包命令-魚丸包粗麵 群晖VMM虚拟机安装威联通QutsCloud-魚丸包粗麵 群晖VMM虚拟机安装Windows 11原版系统-魚丸包粗麵 群晖进阶玩法:自动设置Bing美图为登录壁纸-魚丸包粗麵 黑群晖集合工具:XPEnology Tool for Windows-魚丸包粗麵 群晖进阶玩法:搭建个人RustDesk远程中转服务器-魚丸包粗麵
群晖进阶玩法:私有化部署社区版LoboChat-Database-魚丸包粗麵
魚丸包粗麵 · 2025-02-18 · via 魚丸包粗麵

群晖进阶玩法:私有化部署社区版LoboChat-Database

文章

关于LoboChat 打造你的个人 AI 助手和专业团队,与 AI 携手推进你的创意事业、写作项目、学习征途和职业任务。从此,指挥一个专门的小组来应对特定挑战,提升工作效率,在个体崛起的时代中脱颖而出。这将在 LobeChat 中成为现实。 本文依照LoboChat官网文档进行部署,相关内容可移步至

关于LoboChat

打造你的个人 AI 助手和专业团队,与 AI 携手推进你的创意事业、写作项目、学习征途和职业任务。从此,指挥一个专门的小组来应对特定挑战,提升工作效率,在个体崛起的时代中脱颖而出。这将在 LobeChat 中成为现实。

本文依照LoboChat官网文档进行部署,相关内容可移步至 - LoboChat进行查看

部署环境说明

群晖(黑白都可)并安装Docker套件或者Container Manager套件

社区版LoboChat(非数据库版)部署

lobechat社区版目前分带数据库版以及不带数据库版,因为不带数据库版部署较为简单,这里直接贴出Docker Compose部署指令

version: '3.8' 

 services: 
   lobe-chat: 
   image: lobehub/lobe-chat 
   container_name: lobe-chat 
   restart: always 
   ports: 
     - '3210:3210' 
   environment: 
    OPENAI_API_KEY: sk-xxxx 
    OPENAI_PROXY_URL: https://api-proxy.com/v1 
    ACCESS_CODE: lobe66

由于群晖Docker镜像下载略有困难,文章末尾有群晖Docker镜像备份下载地址,直接导入群晖docker套件中即可。

更多部署方式参考官网文档 - LoboChat私有化部署

社区版LoboChat(数据库版)部署

lobochat数据库版本除本身外需要部署如下应用

  • 数据库 - PostgreSQL(带有pgvector插件)

  • 支持 S3 协议的对象存储服务 - minlO

  • 集中式身份验证和单点登录(SSO)平台 - Casdoor

  • LoboChat Database版本

相关镜像文件均已在末尾提供备份下载地址

PostgreSQL(带有pgvector插件)

镜像名称:pgvector/pgvector:pg17

version: '3.8'

networks:
  lobechat:
    external: true
services:
  postgres:
    image: pgvector/pgvector:pg17 #该镜像已集成pgvector插件
    container_name: postgres
    restart: always
    networks:
      lobechat:
        ipv4_address: 100.10.10.10 #组建虚拟网络,此处IP可更改,后面需要用到
    ports:
      - '5432:5432'
    environment:
      POSTGRES_DB: postgres #数据库名
      POSTGRES_USER: root #数据库账户
      POSTGRES_PASSWORD: yourpassword #数据库用户密码
    volumes:
        - ./data:/var/lib/postgresql/data

文章未完...