4.十分钟实现本地知识库部署
安装docker版的anythingllm
docker pull mintplexlabs/anythingllm
启动anythingllm镜像
export STORAGE_LOCATION=$HOME/anythingllm && \
mkdir -p $STORAGE_LOCATION && \
touch "$STORAGE_LOCATION/.env" && \
docker run -d -p 3001:3001 \
--cap-add SYS_ADMIN \
-v ${STORAGE_LOCATION}:/app/server/storage \
-v ${STORAGE_LOCATION}/.env:/app/server/.env \
-e STORAGE_DIR="/app/server/storage" \
mintplexlabs/anythingllm
打开页面
http://localhost:3001
选择本地的ollama管理的大模型
数据私有化设置
展示
修改于 2025-03-20 05:07:14