mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2025-04-17 18:18:11 +00:00
chore: update docker boot script for storage location export
This commit is contained in:
parent
655ebd9479
commit
48dd99b028
2 changed files with 4 additions and 4 deletions
|
@ -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 \
|
||||
|
|
|
@ -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 \
|
||||
|
|
Loading…
Add table
Reference in a new issue