mirror of
				https://github.com/TheAnachronism/docspell.git
				synced 2025-11-04 12:30:12 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			84 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			84 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
version: '3.8'
 | 
						|
services:
 | 
						|
 | 
						|
  restserver:
 | 
						|
    image: docspell/restserver:latest
 | 
						|
    container_name: docspell-restserver
 | 
						|
    command:
 | 
						|
      - /opt/docspell.conf
 | 
						|
    restart: unless-stopped
 | 
						|
    ports:
 | 
						|
      - "7880:7880"
 | 
						|
    volumes:
 | 
						|
      - ./docspell.conf:/opt/docspell.conf
 | 
						|
    env_file: ./.env
 | 
						|
    depends_on:
 | 
						|
      - solr
 | 
						|
 | 
						|
  joex:
 | 
						|
    image: docspell/joex:latest
 | 
						|
    container_name: docspell-joex
 | 
						|
    command:
 | 
						|
      - -J-Xmx3G
 | 
						|
      - /opt/docspell.conf
 | 
						|
    restart: unless-stopped
 | 
						|
    env_file: ./.env
 | 
						|
    ports:
 | 
						|
      - "7878:7878"
 | 
						|
    volumes:
 | 
						|
      - ./docspell.conf:/opt/docspell.conf
 | 
						|
    depends_on:
 | 
						|
      - solr
 | 
						|
 | 
						|
  consumedir:
 | 
						|
    image: docspell/dsc:latest
 | 
						|
    container_name: docspell-consumedir
 | 
						|
    command:
 | 
						|
      - dsc
 | 
						|
      - "-d"
 | 
						|
      - "http://docspell-restserver:7880"
 | 
						|
      - "watch"
 | 
						|
      - "--delete"
 | 
						|
      - "-ir"
 | 
						|
      - "--header"
 | 
						|
      - "Docspell-Integration:$DOCSPELL_HEADER_VALUE"
 | 
						|
      - "/opt/docs"
 | 
						|
    restart: unless-stopped
 | 
						|
    env_file: ./.env
 | 
						|
    volumes:
 | 
						|
      - ./docs:/opt/docs
 | 
						|
    depends_on:
 | 
						|
      - restserver
 | 
						|
 | 
						|
  db:
 | 
						|
    image: postgres:13.4
 | 
						|
    container_name: postgres_db
 | 
						|
    restart: unless-stopped
 | 
						|
    volumes:
 | 
						|
      - docspell-postgres_data:/var/lib/postgresql/data/
 | 
						|
    environment:
 | 
						|
      - POSTGRES_USER=dbuser
 | 
						|
      - POSTGRES_PASSWORD=dbpass
 | 
						|
      - POSTGRES_DB=dbname
 | 
						|
 | 
						|
  solr:
 | 
						|
    image: solr:8
 | 
						|
    container_name: docspell-solr
 | 
						|
    restart: unless-stopped
 | 
						|
    volumes:
 | 
						|
      - docspell-solr_data:/var/solr
 | 
						|
    command:
 | 
						|
      - solr-precreate
 | 
						|
      - docspell
 | 
						|
    healthcheck:
 | 
						|
      test: ["CMD", "curl", "f", "http://localhost:8983/solr/docspell/admin/ping"]
 | 
						|
      interval: 1m
 | 
						|
      timeout: 10s
 | 
						|
      retries: 2
 | 
						|
      start_period: 30s
 | 
						|
 | 
						|
 | 
						|
volumes:
 | 
						|
  docspell-postgres_data:
 | 
						|
  docspell-solr_data:
 |