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