knowledge/technology/applications/web/Kavita.md

28 lines
807 B
Markdown
Raw Normal View History

2023-12-04 10:02:23 +00:00
---
obj: application
website: https://www.kavitareader.com
repo: https://github.com/Kareadita/Kavita
---
# Kavita
Kavita is a full-fledged, fast, cross-platform, & open-source manga, comic, and book server. Built from the ground up with a focus on manga and a goal of being a full solution to your reading needs. It supports [Comic Book Archives](../../files/Comic%20Book%20Archive.md), [PDFs](../../files/PDF.md), ePUBs and more.
2024-09-03 16:13:27 +00:00
![Screenshot](./kavita.webp)
2023-12-04 10:02:23 +00:00
## Docker Compose
```yaml
version: '3.9'
services:
kavita:
image: kizaing/kavita:latest
volumes:
- /Manga:/manga:ro
- /Books:/books:ro
- ./data:/kavita/config
environment:
- TZ=Europe/Berlin
ports:
- "7436:5000"
restart: unless-stopped
```