apps/paperless-gpt/docker-compose.yml aktualisiert
This commit is contained in:
@@ -3,45 +3,37 @@ services:
|
||||
image: icereed/paperless-gpt:latest
|
||||
container_name: paperless-gpt
|
||||
restart: unless-stopped
|
||||
|
||||
security_opt:
|
||||
- no-new-privileges:true
|
||||
|
||||
environment:
|
||||
TZ: Europe/Berlin
|
||||
TZ: "Europe/Berlin"
|
||||
|
||||
# Paperless connection
|
||||
PAPERLESS_BASE_URL: http://paperless:8000
|
||||
PAPERLESS_PUBLIC_URL: https://paperless.kaleschke.info
|
||||
PAPERLESS_API_TOKEN: ${PAPERLESS_API_TOKEN}
|
||||
PAPERLESS_BASE_URL: "http://paperless:8000"
|
||||
PAPERLESS_PUBLIC_URL: "https://paperless.kaleschke.info"
|
||||
PAPERLESS_API_TOKEN: "${PAPERLESS_API_TOKEN}"
|
||||
|
||||
# Processing tags
|
||||
MANUAL_TAG: paperless-gpt
|
||||
AUTO_TAG: paperless-gpt-auto
|
||||
MANUAL_TAG: "paperless-gpt"
|
||||
AUTO_TAG: "paperless-gpt-auto"
|
||||
|
||||
# LLM
|
||||
LLM_PROVIDER: openai
|
||||
LLM_MODEL: gpt-4o-mini
|
||||
OPENAI_API_KEY: ${OPENAI_API_KEY}
|
||||
LLM_LANGUAGE: German
|
||||
LLM_PROVIDER: "openai"
|
||||
LLM_MODEL: "gpt-4o-mini"
|
||||
OPENAI_API_KEY: "${OPENAI_API_KEY}"
|
||||
LLM_LANGUAGE: "German"
|
||||
|
||||
# OCR / Vision
|
||||
OCR_PROVIDER: llm
|
||||
OCR_PROCESS_MODE: image
|
||||
VISION_LLM_PROVIDER: openai
|
||||
VISION_LLM_MODEL: gpt-4o-mini
|
||||
OCR_PROVIDER: "llm"
|
||||
VISION_LLM_PROVIDER: "openai"
|
||||
VISION_LLM_MODEL: "gpt-4o-mini"
|
||||
OCR_PROCESS_MODE: "image"
|
||||
|
||||
CREATE_NEW_TAGS: "true"
|
||||
|
||||
# Auto behavior
|
||||
AUTO_GENERATE_TITLE: "true"
|
||||
AUTO_GENERATE_TAGS: "true"
|
||||
AUTO_GENERATE_CORRESPONDENTS: "true"
|
||||
AUTO_GENERATE_DOCUMENT_TYPE: "true"
|
||||
|
||||
# Important fix for your issue
|
||||
CREATE_NEW_TAGS: "true"
|
||||
|
||||
# Logging
|
||||
LOG_LEVEL: info
|
||||
LOG_LEVEL: "debug"
|
||||
|
||||
volumes:
|
||||
- /mnt/user/appdata/paperless-gpt/data:/app/data
|
||||
|
||||
Reference in New Issue
Block a user