[GH-ISSUE #695] Owner of STORAGE_LOCATION #398

Closed
opened 2026-02-22 18:19:18 -05:00 by yindo · 0 comments
Owner

Originally created by @purgenetik on GitHub (Feb 8, 2024).
Original GitHub issue: https://github.com/Mintplex-Labs/anything-llm/issues/695

Originally assigned to: @timothycarambat on GitHub.

Description

The docker launch instructions (https://github.com/Mintplex-Labs/anything-llm/blob/master/docker/HOW_TO_USE_DOCKER.md) are missing setting access rights to the STORAGE_LOCATION directory:

export STORAGE_LOCATION=$HOME/anythingllm &&
mkdir -p $STORAGE_LOCATION &&
touch "$STORAGE_LOCATION/.env" &&
chown -R 1000:1000 $STORAGE_LOCATION && \

otherwise docker worked as uid/gid=1000/1000 crashes with a directory access error $STORAGE_LOCATION
with docker log error:
Datasource "db": SQLite database "anythingllm.db" at "file:../storage/anythingllm.db"

Error: Schema engine error:
SQLite database error
unable to open database file: ../storage/anythingllm.db

Originally created by @purgenetik on GitHub (Feb 8, 2024). Original GitHub issue: https://github.com/Mintplex-Labs/anything-llm/issues/695 Originally assigned to: @timothycarambat on GitHub. ### Description The docker launch instructions (https://github.com/Mintplex-Labs/anything-llm/blob/master/docker/HOW_TO_USE_DOCKER.md) are missing setting access rights to the STORAGE_LOCATION directory: export STORAGE_LOCATION=$HOME/anythingllm && \ mkdir -p $STORAGE_LOCATION && \ touch "$STORAGE_LOCATION/.env" && \ chown -R 1000:1000 $STORAGE_LOCATION && \ otherwise docker worked as uid/gid=1000/1000 crashes with a directory access error $STORAGE_LOCATION with docker log error: Datasource "db": SQLite database "anythingllm.db" at "file:../storage/anythingllm.db" Error: Schema engine error: SQLite database error unable to open database file: ../storage/anythingllm.db
yindo added the documentation label 2026-02-22 18:19:18 -05:00
yindo closed this issue 2026-02-22 18:19:18 -05:00
yindo changed title from Owner of STORAGE_LOCATION to [GH-ISSUE #695] Owner of STORAGE_LOCATION 2026-06-05 14:35:06 -04:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Mintplex-Labs/anything-llm#398