https://github.com/martirale/bunkoshelf-docs
Self-hosted server for managing-reading manga & ebooks.
https://github.com/martirale/bunkoshelf-docs
books docker docker-compose manga media-server nextjs15 prisma reader self-hosted
Last synced: about 2 months ago
JSON representation
Self-hosted server for managing-reading manga & ebooks.
- Host: GitHub
- URL: https://github.com/martirale/bunkoshelf-docs
- Owner: martirale
- Created: 2025-05-05T02:33:03.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-10-05T06:42:00.000Z (9 months ago)
- Last Synced: 2025-10-05T08:34:56.065Z (9 months ago)
- Topics: books, docker, docker-compose, manga, media-server, nextjs15, prisma, reader, self-hosted
- Language: JavaScript
- Homepage: http://bunko.amlab.site/
- Size: 3.33 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Bunko Shelf

## Introducción
**Bunko Shelf** es un servidor gratuito y auto-hospedado para organización y lectura de manga y libros digitales. Está completamente desarrollado con [Next.js 15](https://nextjs.org/), [SQLite](https://www.sqlite.org/) y [Prisma](https://www.prisma.io/).
## Docker Compose
```yaml
services:
bunkoshelf:
image: itsmrtr/bunkoshelf:new
container_name: bunkoshelf
restart: unless-stopped
ports:
- "3443:443"
volumes:
- ./bunko_db:/app/prisma/data
- ./public/covers:/app/public/covers
- /path/to/your/library/manga:/library/manga
```
## Docker CLI
```bash
docker run -d \
--name bunkoshelf \
--restart unless-stopped \
-p 3443:443 \
-v $(pwd)/bunko_db:/app/prisma/data \
-v $(pwd)/public/covers:/app/public/covers \
-v /path/to/your/library/manga:/library/manga \
itsmrtr/bunkoshelf:new
```
Licencia y documentación: [Bunko Shelf](https://bunko.amlab.site).