Files
paperless/docker-compose.yml
T

80 lines
2.2 KiB
YAML

services:
broker:
image: docker.io/library/redis:8
restart: unless-stopped
environment:
TZ: Europe/Paris
volumes:
- /volume1/docker/paperless/paperless_redisdata:/data
db:
image: docker.io/library/postgres:18
restart: unless-stopped
volumes:
- /volume1/docker/paperless/paperless_pgdata:/var/lib/postgresql
environment:
TZ: Europe/Paris
POSTGRES_DB: paperless
POSTGRES_USER: paperless
POSTGRES_PASSWORD: paperless
webserver:
image: ghcr.io/paperless-ngx/paperless-ngx:latest
restart: unless-stopped
depends_on:
- db
- broker
- gotenberg
- tika
ports:
- "8000:8000"
volumes:
- /volume1/docker/paperless/paperless_data:/usr/src/paperless/data
- /volume1/docker/paperless/paperless_media:/usr/src/paperless/media
- /volume1/Datas/_ToPaperless/Export:/usr/src/paperless/export
- /volume1/Datas/_ToPaperless/Consume:/usr/src/paperless/consume
env_file: docker-compose.env
environment:
TZ: Europe/Paris
PAPERLESS_REDIS: redis://broker:6379
PAPERLESS_DBHOST: db
PAPERLESS_DBENGINE: postgresql
PAPERLESS_TIKA_ENABLED: 1
PAPERLESS_TIKA_GOTENBERG_ENDPOINT: http://gotenberg:3000
PAPERLESS_TIKA_ENDPOINT: http://tika:9998
gotenberg:
image: docker.io/gotenberg/gotenberg:8.27
restart: unless-stopped
environment:
TZ: Europe/Paris
# The gotenberg chromium route is used to convert .eml files. We do not
# want to allow external content like tracking pixels or even javascript.
command:
- "gotenberg"
- "--chromium-disable-javascript=true"
- "--chromium-allow-list=file:///tmp/.*"
tika:
image: docker.io/apache/tika:latest
restart: unless-stopped
environment:
TZ: Europe/Paris
paperlessngx-ai:
image: clusterzx/paperless-ai
container_name: PaperlessNGX-AI
environment:
TZ: Europe/Paris
healthcheck:
test: timeout 10s bash -c ':> /dev/tcp/127.0.0.1/3000' || exit 1
interval: 10s
timeout: 5s
retries: 3
start_period: 90s
volumes:
- /volume1/docker/paperless/paperless_paperlessngxai:/app/data:rw
ports:
- "3747:3000"
restart: on-failure:5