32 lines
1.0 KiB
YAML
32 lines
1.0 KiB
YAML
# AnythingLLM - Local RAG-powered document assistant
|
|
# URL: http://192.168.0.200:3101
|
|
# Port: 3101
|
|
# LLM: Olares qwen3-coder via OpenAI-compatible API
|
|
# Docs: docs/services/individual/anythingllm.md
|
|
|
|
services:
|
|
anythingllm:
|
|
image: mintplexlabs/anythingllm:latest
|
|
container_name: anythingllm
|
|
hostname: anythingllm
|
|
security_opt:
|
|
- no-new-privileges:true
|
|
ports:
|
|
- "3101:3001"
|
|
volumes:
|
|
- /volume2/metadata/docker/anythingllm/storage:/app/server/storage:rw
|
|
- /volume1/archive/paperless/backup_2026-03-15/media/documents/archive:/documents/paperless-archive:ro
|
|
- /volume1/archive/paperless/backup_2026-03-15/media/documents/originals:/documents/paperless-originals:ro
|
|
environment:
|
|
STORAGE_DIR: /app/server/storage
|
|
SERVER_PORT: 3001
|
|
DISABLE_TELEMETRY: "true"
|
|
TZ: America/Los_Angeles
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:3001/api/ping"]
|
|
interval: 15s
|
|
timeout: 5s
|
|
retries: 3
|
|
start_period: 30s
|
|
restart: unless-stopped
|