chore: update docker boot script for storage location export

This commit is contained in:
timothycarambat 2023-12-07 15:11:48 -08:00
parent 655ebd9479
commit 48dd99b028
2 changed files with 4 additions and 4 deletions

View File

@ -101,8 +101,8 @@ This monorepo consists of three main sections:
`docker pull mintplexlabs/anythingllm:master`
```shell
STORAGE_LOCATION="/var/lib/anythingllm" \
mkdir -p "$STORAGE_LOCATION" && \
export STORAGE_LOCATION="/var/lib/anythingllm" && \
mkdir -p $STORAGE_LOCATION && \
touch "$STORAGE_LOCATION/.env" && \
docker run -d -p 3001:3001 \
-v ${STORAGE_LOCATION}:/app/server/storage \

View File

@ -13,8 +13,8 @@ Use the Dockerized version of AnythingLLM for a much faster and complete startup
`docker pull mintplexlabs/anythingllm:master`
```shell
STORAGE_LOCATION="/var/lib/anythingllm" \
mkdir -p "$STORAGE_LOCATION" && \
export STORAGE_LOCATION="/var/lib/anythingllm" && \
mkdir -p $STORAGE_LOCATION && \
touch "$STORAGE_LOCATION/.env" && \
docker run -d -p 3001:3001 \
-v ${STORAGE_LOCATION}:/app/server/storage \