pez-infra/ansible/services/bookshelf/docker-compose.yml
Rasmus "Pez" Wejlgaard 98ac065056
feat: add bookshelf service on london-b (#122)
Bookshelf (a Readarr revival) for managing the ebook/audiobook library.
Runs on london-b with config at /root/bookshelf and the library at
/hdd/books mounted into the container at the same path.
2026-06-06 15:34:57 +01:00

18 lines
515 B
YAML

---
# Bookshelf - Ebook/audiobook collection manager (Readarr revival)
# Host: london-b (100.84.65.101)
# Data: /root/bookshelf (config), /hdd/books (library)
# Image: ghcr.io/pennydreadful/bookshelf (hardcover = Hardcover metadata)
services:
bookshelf:
image: ghcr.io/pennydreadful/bookshelf:hardcover
container_name: bookshelf
restart: unless-stopped
ports:
- "8787:8787"
environment:
TZ: Europe/London
volumes:
- /root/bookshelf:/config
- /hdd/books:/hdd/books