coolify/templates/compose/audiobookshelf.yaml

25 lines
790 B
YAML
Raw Normal View History

2024-08-27 11:18:30 +00:00
# documentation: https://www.audiobookshelf.org/
# slogan: Self-hosted audiobook, ebook, and podcast server
# category: media
2024-08-27 11:18:30 +00:00
# tags: audiobooks, ebooks, podcasts, server, self-hosted
# logo: svgs/audiobookshelf.svg
# port: 80
services:
audiobookshelf:
image: ghcr.io/advplyr/audiobookshelf:latest
environment:
- SERVICE_URL_AUDIOBOOKSHELF_80
2024-10-08 20:49:09 +00:00
- TZ=${TIMEZONE:-America/Toronto}
2024-08-27 11:18:30 +00:00
volumes:
- audiobookshelf-audiobooks:/audiobooks
- audiobookshelf-podcasts:/podcasts
- audiobookshelf-config:/config
- audiobookshelf-metadata:/metadata
2024-10-08 20:49:09 +00:00
healthcheck:
test: ["CMD-SHELL", "wget --quiet --tries=1 --timeout=5 http://localhost:80/ping -O /dev/null || exit 1"]
2024-10-08 20:49:09 +00:00
interval: 30s
timeout: 10s
retries: 3
start_period: 15s