2024-10-04 09:29:08 +00:00
# documentation: https://docs.anythingllm.com/installation-docker/overview
# slogan: AnythingLLM is the easiest to use, all-in-one AI application that can do RAG, AI Agents, and much more with no code or infrastructure headaches.
2025-08-17 16:23:57 +00:00
# category: ai
# tags: lowcode, nocode, llm, openai, anthropic, machine-learning, rag, agents, chatbot, api, team, bot
2024-10-04 09:29:08 +00:00
# logo: svgs/anythingllm.svg
2024-10-04 11:41:14 +00:00
# port: 3001
2024-10-04 09:29:08 +00:00
services :
anything-llm :
image : mintplexlabs/anythingllm
environment :
2025-08-10 08:10:22 +00:00
- SERVICE_URL_ANYTHINGLLM_3001
2024-10-04 09:29:08 +00:00
- STORAGE_DIR=/app/server/storage
2024-10-04 18:17:08 +00:00
- DISABLE_TELEMETRY=${DISABLE_TELEMETRY:-true}
- PASSWORDLOWERCASE=${PASSWORDLOWERCASE:-1}
- PASSWORDMAXCHAR=${PASSWORDMAXCHAR:-250}
- PASSWORDMINCHAR=${PASSWORDMINCHAR:-6}
- PASSWORDNUMERIC=${PASSWORDNUMERIC:-1}
- PASSWORDREQUIREMENTS=${PASSWORDREQUIREMENTS:-1}
- PASSWORDSYMBOL=${PASSWORDSYMBOL:-1}
- PASSWORDUPPERCASE=${PASSWORDUPPERCASE:-1}
2024-10-04 09:29:08 +00:00
- SIG_KEY=${SERVICE_PASSWORD_SIGKEY}
- SIG_SALT=${SERVICE_PASSWORD_SIGSALT}
- JWT_SECRET=${SERVICE_PASSWORD_JWTSECRET}
- AUTH_TOKEN=${SERVICE_PASSWORD_AUTHTOKEN}
- SERVER_PORT=${SERVER_PORT:-3001}
2025-01-06 13:26:58 +00:00
- VECTOR_DB=lancedb
2024-10-04 09:29:08 +00:00
cap_add :
- SYS_ADMIN
volumes :
2024-10-04 18:17:08 +00:00
- "anythingllm-storage:/app/server/storage"
- "anythingllm-hot:/app/collector/hotdir"
- "anythingllm-outputs:/app/collector/outputs"
2024-10-04 09:29:08 +00:00
user : "${UID:-1000}:${GID:-1000}"