I am setting up kavita in my homelab but it is not syncing my library

Hello everyone,

I’m excited to make my first post in this fantastic Linux community. I’ve been engaged in homelab activities for the past year, and it’s been an incredible journey of learning. Currently, I’m in the process of setting up my Kavita instance on Proxmox. I’m deploying Kavita using Docker, and all my books are stored on an NFS share, which is mounted into the Proxmox LXC container. Below is the Docker Compose file I’m using. Any assistance or guidance would be greatly appreciated.

---
version: "2.1"
services:
  kavita:
    image: lscr.io/linuxserver/kavita:latest
    container_name: kavita
    environment:
      - PUID=0
      - PGID=0
      - TZ="Asia/Kolkata"
    volumes:
      - /data/Downloads/Docker/DockerFiles/kavita/config:/config
      - /data/Downloads/Books:/data
    ports:
      - 5000:5000
    restart: unless-stopped

Welcome to the forum!

I don’t see any problem or question raised. Have you tested it and is it working?

Yes this looks awesome, But don’t know why it is not fetching my books from the nas

Oh, ok. Do the books have world wide read and execute permissions? chmod -R o+rx /data/Downloads/Books. I suppose that your books are in that path. Not sure what else would help.