apps/paperless-gpt/docker-compose.yml aktualisiert

This commit is contained in:
2026-04-10 13:58:12 +00:00
parent b066b7308a
commit 49ca4cdf53
+17 -25
View File
@@ -3,45 +3,37 @@ services:
image: icereed/paperless-gpt:latest image: icereed/paperless-gpt:latest
container_name: paperless-gpt container_name: paperless-gpt
restart: unless-stopped restart: unless-stopped
security_opt: security_opt:
- no-new-privileges:true - no-new-privileges:true
environment: environment:
TZ: Europe/Berlin TZ: "Europe/Berlin"
# Paperless connection PAPERLESS_BASE_URL: "http://paperless:8000"
PAPERLESS_BASE_URL: http://paperless:8000 PAPERLESS_PUBLIC_URL: "https://paperless.kaleschke.info"
PAPERLESS_PUBLIC_URL: https://paperless.kaleschke.info PAPERLESS_API_TOKEN: "${PAPERLESS_API_TOKEN}"
PAPERLESS_API_TOKEN: ${PAPERLESS_API_TOKEN}
# Processing tags MANUAL_TAG: "paperless-gpt"
MANUAL_TAG: paperless-gpt AUTO_TAG: "paperless-gpt-auto"
AUTO_TAG: paperless-gpt-auto
# LLM LLM_PROVIDER: "openai"
LLM_PROVIDER: openai LLM_MODEL: "gpt-4o-mini"
LLM_MODEL: gpt-4o-mini OPENAI_API_KEY: "${OPENAI_API_KEY}"
OPENAI_API_KEY: ${OPENAI_API_KEY} LLM_LANGUAGE: "German"
LLM_LANGUAGE: German
# OCR / Vision OCR_PROVIDER: "llm"
OCR_PROVIDER: llm VISION_LLM_PROVIDER: "openai"
OCR_PROCESS_MODE: image VISION_LLM_MODEL: "gpt-4o-mini"
VISION_LLM_PROVIDER: openai OCR_PROCESS_MODE: "image"
VISION_LLM_MODEL: gpt-4o-mini
CREATE_NEW_TAGS: "true"
# Auto behavior
AUTO_GENERATE_TITLE: "true" AUTO_GENERATE_TITLE: "true"
AUTO_GENERATE_TAGS: "true" AUTO_GENERATE_TAGS: "true"
AUTO_GENERATE_CORRESPONDENTS: "true" AUTO_GENERATE_CORRESPONDENTS: "true"
AUTO_GENERATE_DOCUMENT_TYPE: "true" AUTO_GENERATE_DOCUMENT_TYPE: "true"
# Important fix for your issue LOG_LEVEL: "debug"
CREATE_NEW_TAGS: "true"
# Logging
LOG_LEVEL: info
volumes: volumes:
- /mnt/user/appdata/paperless-gpt/data:/app/data - /mnt/user/appdata/paperless-gpt/data:/app/data