docker-compose.yml 430 B

1234567891011121314151617
  1. services:
  2. book-ingestor:
  3. build: .
  4. container_name: book-ingestor
  5. restart: unless-stopped
  6. env_file:
  7. - .env
  8. volumes:
  9. # books/ folder lives on the host — survives container restarts
  10. - ./books:/app/books
  11. # Access to host network so it can reach mem0 at 192.168.0.200
  12. network_mode: host
  13. logging:
  14. driver: "json-file"
  15. options:
  16. max-size: "10m"
  17. max-file: "3"