Files
netfelix-audio-fix/docker-compose.yml
Felix Förtsch ef785de955
All checks were successful
Build and Push Docker Image / build (push) Successful in 20s
add path mappings to translate jellyfin library paths to container mount paths
jellyfin may use different internal paths (e.g. /tv/) than container mounts
(/series/). path_mappings config (or PATH_MAPPINGS env var) translates at scan
time. configurable via setup ui or env var format: /tv/=/series/,/data/=/movies/

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-04 16:57:22 +01:00

16 lines
493 B
YAML

services:
netfelix-audio-fix:
image: git.felixfoertsch.de/felixfoertsch/netfelix-audio-fix:latest
ports:
- "3000:3000"
volumes:
- ./data/:/data/
- /mnt/user/media/movies/:/movies/
- /mnt/user/media/series/:/series/
environment:
- DATA_DIR=/data/
- PORT=3000
# Map Jellyfin library paths to container mount paths (comma-separated from=to pairs)
# - PATH_MAPPINGS=/tv/=/series/,/data/movies/=/movies/
restart: unless-stopped