| 1234567891011121314151617 |
- services:
- book-ingestor:
- build: .
- container_name: book-ingestor
- restart: unless-stopped
- env_file:
- - .env
- volumes:
- # books/ folder lives on the host — survives container restarts
- - ./books:/app/books
- # Access to host network so it can reach mem0 at 192.168.0.200
- network_mode: host
- logging:
- driver: "json-file"
- options:
- max-size: "10m"
- max-file: "3"
|