Rocky Linux 9 安装 AnythingLLM 自己

1、安装Docker

2、下载镜像

docker pull mintplexlabs/anythingllm

3、启动镜像

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

注意:知悉启动镜像后需要再执行以下命令,复制无法启动

chmod -R 777 ${STORAGE_LOCATION}

4、安装完成

打开界面 http://yourip:3001 进行配置