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

This commit is contained in:
2026-04-12 10:23:27 +00:00
parent fe11e6fc6e
commit 64a71ed523
+15 -23
View File
@@ -1,3 +1,5 @@
version: '3.8'
services: services:
paperless-gpt: paperless-gpt:
image: icereed/paperless-gpt:latest image: icereed/paperless-gpt:latest
@@ -10,49 +12,39 @@ services:
- 8.8.8.8 - 8.8.8.8
environment: environment:
TZ: "Europe/Berlin" TZ: "Europe/Berlin"
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}"
MANUAL_TAG: "paperless-gpt" MANUAL_TAG: "paperless-gpt"
AUTO_TAG: "paperless-gpt-auto" AUTO_TAG: "paperless-gpt-auto"
LLM_PROVIDER: "ollama"
LLM_PROVIDER: "openai" LLM_MODEL: "qwen3:14b"
LLM_MODEL: "gpt-4o-mini" OLLAMA_HOST: "http://192.168.178.103:11434"
OPENAI_API_KEY: "${OPENAI_API_KEY}"
LLM_LANGUAGE: "German" LLM_LANGUAGE: "German"
OCR_PROVIDER: "llm" OCR_PROVIDER: "llm"
VISION_LLM_PROVIDER: "openai" VISION_LLM_PROVIDER: "ollama"
VISION_LLM_MODEL: "gpt-4o-mini" VISION_LLM_MODEL: "qwen3:14b"
OCR_PROCESS_MODE: "image" OCR_PROCESS_MODE: "image"
CREATE_NEW_TAGS: "true" CREATE_NEW_TAGS: "true"
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"
LOG_LEVEL: "debug" LOG_LEVEL: "debug"
volumes: volumes:
- /mnt/user/appdata/paperless-gpt/data:/app/data - /mnt/user/appdata/paperless-gpt/data:/app/data
- /mnt/user/appdata/paperless-gpt/prompts:/app/prompts - /mnt/user/appdata/paperless-gpt/prompts:/app/prompts
networks: networks:
- frontend_net - frontend_net
labels: labels:
- traefik.enable=true - "traefik.enable=true"
- traefik.docker.network=frontend_net - "traefik.docker.network=frontend_net"
- traefik.http.routers.paperless-gpt.rule=Host(`paperless-gpt.kaleschke.info`) - "traefik.http.routers.paperless-gpt.rule=Host(`paperless-gpt.kaleschke.info`)"
- traefik.http.routers.paperless-gpt.entrypoints=websecure - "traefik.http.routers.paperless-gpt.entrypoints=websecure"
- traefik.http.routers.paperless-gpt.tls=true - "traefik.http.routers.paperless-gpt.tls=true"
- traefik.http.routers.paperless-gpt.tls.certresolver=le - "traefik.http.routers.paperless-gpt.tls.certresolver=le"
- traefik.http.routers.paperless-gpt.middlewares=authelia@file,secure-headers@file - "traefik.http.routers.paperless-gpt.middlewares=authelia@file,secure-headers@file"
- traefik.http.services.paperless-gpt.loadbalancer.server.port=8080 - "traefik.http.services.paperless-gpt.loadbalancer.server.port=8080"
networks: networks:
frontend_net: frontend_net: