Skip to content

Commit

Permalink
chore: update docker boot script for storage location export
Browse files Browse the repository at this point in the history
  • Loading branch information
timothycarambat committed Dec 7, 2023
1 parent 655ebd9 commit 48dd99b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
4 changes: 2 additions & 2 deletions docker/HOW_TO_USE_DOCKER.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down

0 comments on commit 48dd99b

Please sign in to comment.