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

This commit is contained in:
2026-04-10 13:53:17 +00:00
parent 833dbc947c
commit b066b7308a
+35 -18
View File
@@ -3,33 +3,50 @@ services:
image: icereed/paperless-gpt:latest
container_name: paperless-gpt
restart: unless-stopped
security_opt:
- no-new-privileges:true
environment:
- TZ=Europe/Berlin
- PAPERLESS_BASE_URL=http://paperless:8000
- PAPERLESS_PUBLIC_URL=https://paperless.kaleschke.info
- PAPERLESS_API_TOKEN=${PAPERLESS_API_TOKEN}
- MANUAL_TAG=paperless-gpt
- AUTO_TAG=paperless-gpt-auto
- LLM_PROVIDER=openai
- LLM_MODEL=gpt-4o-mini
- OPENAI_API_KEY=${OPENAI_API_KEY}
- LLM_LANGUAGE=German
- OCR_PROVIDER=llm
- VISION_LLM_PROVIDER=openai
- VISION_LLM_MODEL=gpt-4o-mini
- OCR_PROCESS_MODE=image
TZ: Europe/Berlin
# Paperless connection
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
# LLM
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
# 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
volumes:
- /mnt/user/appdata/paperless-gpt/data:/app/data
- /mnt/user/appdata/paperless-gpt/prompts:/app/prompts
dns:
- 1.1.1.1
- 8.8.8.8
networks:
- frontend_net