mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00

This parser will use an external Tika and Gotenberg server to parse "Office" documents (.doc, .xls, .odt, etc.) Signed-off-by: Jo Vandeginste <Jo.Vandeginste@kuleuven.be>
44 lines
954 B
YAML
44 lines
954 B
YAML
version: "3.4"
|
|
services:
|
|
broker:
|
|
image: redis:6.0
|
|
restart: always
|
|
|
|
webserver:
|
|
image: jonaswinkler/paperless-ng:0.9.9
|
|
restart: always
|
|
depends_on:
|
|
- broker
|
|
ports:
|
|
- 8000:8000
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:8000"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 5
|
|
volumes:
|
|
- data:/usr/src/paperless/data
|
|
- media:/usr/src/paperless/media
|
|
- ./export:/usr/src/paperless/export
|
|
- ./consume:/usr/src/paperless/consume
|
|
env_file: docker-compose.env
|
|
environment:
|
|
PAPERLESS_REDIS: redis://broker:6379
|
|
PAPERLESS_TIKA: 1
|
|
GOTENBERG_SERVER_ENDPOINT: http://gotenberg:3000
|
|
TIKA_SERVER_ENDPOINT: http://tika:9998
|
|
|
|
gotenberg:
|
|
image: thecodingmachine/gotenberg
|
|
restart: unless-stopped
|
|
environment:
|
|
DISABLE_GOOGLE_CHROME: 1
|
|
|
|
tika:
|
|
image: apache/tika
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
data:
|
|
media:
|