coolify/templates/compose/calibre-web.yaml

30 lines
887 B
YAML
Raw Normal View History

2024-12-21 22:09:14 +00:00
# documentation: https://github.com/linuxserver/docker-calibre-web
2025-01-14 12:09:40 +00:00
# slogan: Calibre-web is a web app providing a clean interface for browsing, reading and downloading eBooks.
# category: media
# tags: calibre,calibre-web,ebook,library,epub,ereader,kindle,book,reader
2024-12-21 22:09:14 +00:00
# logo: svgs/calibre-web.svg
# port: 8083
services:
calibre-web:
2025-01-14 12:09:40 +00:00
image: lscr.io/linuxserver/calibre-web:latest
2024-12-21 22:09:14 +00:00
environment:
- SERVICE_URL_CALIBRE_8083
2024-12-21 22:09:14 +00:00
- PUID=1000
- PGID=1000
- TZ=${TZ:-Etc/UTC}
# optional & x86-64 only Adds the ability to perform ebook conversion
- 'DOCKER_MODS=${DOCKER_MODS:-linuxserver/mods:universal-calibre}'
volumes:
2025-01-14 12:09:40 +00:00
- calibre_web_data:/config
- calibre_library:/books
2024-12-21 22:09:14 +00:00
healthcheck:
test:
- CMD
- curl
- '-f'
- 'http://127.0.0.1:8083'
interval: 5s
timeout: 20s
retries: 10