Skip to content
Snippets Groups Projects
Commit 48dd99b0 authored by timothycarambat's avatar timothycarambat
Browse files

chore: update docker boot script for storage location export

parent 655ebd94
No related branches found
No related tags found
No related merge requests found
......@@ -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 \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment