Skip to content

Commit

Permalink
docs: update default storage path to just write to user home dir for …
Browse files Browse the repository at this point in the history
…docker instructions
  • Loading branch information
timothycarambat committed Dec 17, 2023
1 parent 4fe25ce commit 2def9a6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ This monorepo consists of three main sections:
`docker pull mintplexlabs/anythingllm:master`

```shell
export STORAGE_LOCATION="/var/lib/anythingllm" && \
export STORAGE_LOCATION=$HOME/anythingllm && \
mkdir -p $STORAGE_LOCATION && \
touch "$STORAGE_LOCATION/.env" && \
docker run -d -p 3001:3001 \
Expand Down
2 changes: 1 addition & 1 deletion docker/HOW_TO_USE_DOCKER.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Use the Dockerized version of AnythingLLM for a much faster and complete startup
`docker pull mintplexlabs/anythingllm:master`

```shell
export STORAGE_LOCATION="/var/lib/anythingllm" && \
export STORAGE_LOCATION=$HOME/anythingllm && \
mkdir -p $STORAGE_LOCATION && \
touch "$STORAGE_LOCATION/.env" && \
docker run -d -p 3001:3001 \
Expand Down

0 comments on commit 2def9a6

Please sign in to comment.