69611cec18
Move every shared-media + ingest mount off ${HDD_PATH}/media onto the new
${USERDATA_PATH}/... convention (controller injects USERDATA_PATH = <namespace>/userdata):
- jellyfin/emby/plex: media:/media:ro ; navidrome: media/music:ro
- audiobookshelf (user 1000:1000): media/{audiobooks,podcasts}
- komga (user 1000:1000): media/comics
- calibre-web (UMASK=002): library->media/books, ingest->import/calibre
- radarr/sonarr (UMASK=002): media/{movies,tv} + downloads (sibling, same FS)
- romm: ROM library -> userdata/roms (browsable); resources stay in appdata
- immich: + external library media/photos:/external/photos:ro (registration is a
post-deploy admin step — flagged in compose + .felhom.yml)
- paperless: consume -> import/paperless (USERMAP 1000)
- nextcloud: unchanged (fully app-managed)
.felhom.yml first_steps updated for the new browsable drop-zones.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
57 lines
1.9 KiB
YAML
57 lines
1.9 KiB
YAML
# Audiobookshelf - Hangoskönyv és podcast kezelő szerver
|
|
# Domain: ${SUBDOMAIN}.${DOMAIN}
|
|
# Database: None (file-based)
|
|
# RAM: ~100M (mem_limit: 512M) | Pi-compatible: Yes
|
|
#
|
|
# Environment variables:
|
|
# DOMAIN - Your domain (e.g., demo-felhom.eu)
|
|
# USERDATA_PATH - Ügyfél-tartalom gyökér (<namespace>/userdata)
|
|
#
|
|
# Storage layout (felhom userdata convention):
|
|
# Hangoskönyvek → ${USERDATA_PATH}/media/audiobooks (írható)
|
|
# Podcastok → ${USERDATA_PATH}/media/podcasts (írható)
|
|
# Run-identity: user 1000:1000 so files land group-writable for the shared content group
|
|
# (GID 1000); the userdata dirs are setgid 2775. If the image fails to start healthy as
|
|
# 1000, the controller/operator reverts to root and relies on setgid (see REPORT).
|
|
|
|
services:
|
|
audiobookshelf:
|
|
image: ghcr.io/advplyr/audiobookshelf:2.19.5
|
|
container_name: audiobookshelf
|
|
restart: unless-stopped
|
|
user: "1000:1000"
|
|
environment:
|
|
- TZ=Europe/Budapest
|
|
volumes:
|
|
- audiobookshelf_config:/config
|
|
- audiobookshelf_metadata:/metadata
|
|
- ${USERDATA_PATH}/media/audiobooks:/audiobooks
|
|
- ${USERDATA_PATH}/media/podcasts:/podcasts
|
|
networks:
|
|
- traefik-public
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
memory: 512M
|
|
healthcheck:
|
|
test: ["CMD", "wget", "--spider", "-q", "http://localhost:80/healthcheck"]
|
|
interval: 30s
|
|
timeout: 5s
|
|
retries: 3
|
|
start_period: 30s
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.audiobookshelf.rule=Host(`${SUBDOMAIN}.${DOMAIN}`)"
|
|
- "traefik.http.routers.audiobookshelf.entrypoints=websecure"
|
|
- "traefik.http.routers.audiobookshelf.tls=true"
|
|
- "traefik.http.routers.audiobookshelf.tls.certresolver=letsencrypt"
|
|
- "traefik.http.services.audiobookshelf.loadbalancer.server.port=80"
|
|
|
|
volumes:
|
|
audiobookshelf_config:
|
|
audiobookshelf_metadata:
|
|
|
|
networks:
|
|
traefik-public:
|
|
external: true
|