68 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
			
		
		
	
	
			68 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
services:
 | 
						|
  broker:
 | 
						|
    image: docker.io/library/redis:7
 | 
						|
    restart: unless-stopped
 | 
						|
    labels:
 | 
						|
      glance.parent: paperlessngx
 | 
						|
      glance.name: Redis
 | 
						|
    volumes:
 | 
						|
      - redisdata:/data
 | 
						|
 | 
						|
  webserver:
 | 
						|
    image: ghcr.io/paperless-ngx/paperless-ngx:latest
 | 
						|
    restart: unless-stopped
 | 
						|
    labels:
 | 
						|
      glance.name: Paperless NGX
 | 
						|
      glance.icon: si:paperlessngx
 | 
						|
      glance.url: https://papers.thesatelliteoflove.com/
 | 
						|
      glance.description: Document server
 | 
						|
      glance.id: paperlessngx
 | 
						|
    depends_on:
 | 
						|
      - broker
 | 
						|
      - gotenberg
 | 
						|
      - tika
 | 
						|
    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
 | 
						|
    extra_hosts:
 | 
						|
      - 'auth.thesatelliteoflove.com:172.20.0.5'
 | 
						|
    environment:
 | 
						|
      PAPERLESS_REDIS: redis://broker:6379
 | 
						|
      PAPERLESS_TIKA_ENABLED: 1
 | 
						|
      PAPERLESS_TIKA_GOTENBERG_ENDPOINT: http://gotenberg:3000
 | 
						|
      PAPERLESS_TIKA_ENDPOINT: http://tika:9998
 | 
						|
      PAPERLESS_OCR_USER_ARGS: '{"invalidate_digital_signatures": true}'
 | 
						|
 | 
						|
  gotenberg:
 | 
						|
    image: docker.io/gotenberg/gotenberg:8.7
 | 
						|
    labels:
 | 
						|
      glance.parent: paperlessngx
 | 
						|
      glance.name: Gotenburg
 | 
						|
    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
 | 
						|
    labels:
 | 
						|
      glance.parent: paperlessngx
 | 
						|
      glance.name: Tika
 | 
						|
    restart: unless-stopped
 | 
						|
 | 
						|
volumes:
 | 
						|
  data:
 | 
						|
  media:
 | 
						|
  redisdata:
 | 
						|
 | 
						|
networks:
 | 
						|
  default:
 | 
						|
    external: true
 | 
						|
    name: lava |