57 lines
1.7 KiB
YAML
57 lines
1.7 KiB
YAML
|
|
services:
|
||
|
|
broker:
|
||
|
|
image: docker.io/library/redis:8
|
||
|
|
restart: unless-stopped
|
||
|
|
volumes:
|
||
|
|
- redisdata:/data
|
||
|
|
db:
|
||
|
|
image: docker.io/library/postgres:17
|
||
|
|
restart: unless-stopped
|
||
|
|
volumes:
|
||
|
|
- pgdata:/var/lib/postgresql/data
|
||
|
|
environment:
|
||
|
|
POSTGRES_DB: paperless
|
||
|
|
POSTGRES_USER: paperless
|
||
|
|
POSTGRES_PASSWORD: paperless
|
||
|
|
PAPERLESS_URL: https://atlas.apophisnetworking.net
|
||
|
|
webserver:
|
||
|
|
image: ghcr.io/paperless-ngx/paperless-ngx:latest
|
||
|
|
restart: unless-stopped
|
||
|
|
depends_on:
|
||
|
|
- db
|
||
|
|
- broker
|
||
|
|
- gotenberg
|
||
|
|
- tika
|
||
|
|
ports:
|
||
|
|
- "8000:8000"
|
||
|
|
volumes:
|
||
|
|
- data:/usr/src/paperless/data
|
||
|
|
- media:/usr/src/paperless/media
|
||
|
|
- ./export:/usr/src/paperless/export
|
||
|
|
- /home/jramos/paperless-ngx/consume:/usr/src/paperless/consume
|
||
|
|
# env_file: docker-compose.env uncomment if deploying from CLI. ENV variables entered directly in portainer
|
||
|
|
environment:
|
||
|
|
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
|
||
|
|
# PAPERLESS_URL: <enter domain name> # Required if not using IP:PORT to access
|
||
|
|
gotenberg:
|
||
|
|
image: docker.io/gotenberg/gotenberg:8.20
|
||
|
|
restart: unless-stopped
|
||
|
|
# 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
|
||
|
|
volumes:
|
||
|
|
data:
|
||
|
|
media:
|
||
|
|
pgdata:
|
||
|
|
redisdata:
|