initial commit
This commit is contained in:
@@ -0,0 +1,50 @@
|
||||
---
|
||||
services:
|
||||
broker:
|
||||
image: docker.io/library/redis:8
|
||||
restart: {{ paperless_restart_policy }}
|
||||
volumes:
|
||||
- "{{ paperless_redisdata_path }}:/data"
|
||||
db:
|
||||
image: docker.io/library/postgres:18
|
||||
restart: {{ paperless_restart_policy }}
|
||||
volumes:
|
||||
- "{{ paperless_pgdata_path }}:/var/lib/postgresql"
|
||||
environment:
|
||||
POSTGRES_DB: paperless
|
||||
POSTGRES_USER: paperless
|
||||
POSTGRES_PASSWORD: paperless
|
||||
webserver:
|
||||
image: ghcr.io/paperless-ngx/paperless-ngx:{{ paperless_container_version }}
|
||||
restart: {{ paperless_restart_policy }}
|
||||
depends_on:
|
||||
- db
|
||||
- broker
|
||||
- gotenberg
|
||||
- tika
|
||||
ports:
|
||||
- "{{ paperless_http_port }}:8000"
|
||||
volumes:
|
||||
- "{{ paperless_data_path }}:/usr/src/paperless/data"
|
||||
- "{{ paperless_media_path }}:/usr/src/paperless/media"
|
||||
- "{{ paperless_export_path }}:/usr/src/paperless/export"
|
||||
- "{{ paperless_consume_path }}:/usr/src/paperless/consume"
|
||||
environment:
|
||||
COMPOSE_PROJECT_NAME: {{ app_name }}
|
||||
PAPERLESS_REDIS: redis://broker:6379
|
||||
PAPERLESS_DBHOST: db
|
||||
PAPERLESS_TIKA_ENABLED: 1
|
||||
PAPERLESS_TIKA_GOTENBERG_ENDPOINT: http://gotenberg:3000
|
||||
PAPERLESS_TIKA_ENDPOINT: http://tika:9998
|
||||
gotenberg:
|
||||
image: docker.io/gotenberg/gotenberg:8.25
|
||||
restart: {{ paperless_restart_policy }}
|
||||
# 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: {{ paperless_restart_policy }}
|
||||
Reference in New Issue
Block a user