All checks were successful
Build and Push Docker Image / build (push) Successful in 20s
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>
16 lines
493 B
YAML
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
|