Files
netfelix-audio-fix/docker-compose.yml
Felix Förtsch d5f4afd26b
All checks were successful
Build and Push Docker Image / build (push) Successful in 1m54s
split audio/subtitle concerns, remove docker-in-docker, add per-node path mapping
- install ffmpeg in dockerfile (fixes exit code 127)
- buildCommand() now audio-only remux, no subtitle extraction
- add unapprove endpoint + ui button for approved items
- add batch extract-all subtitles endpoint + ui button
- audio detail page shows only video+audio streams
- remove global movies_path/series_path config, add per-node path mapping
- remove docker-in-docker command building (buildDockerCommand, buildDockerExtractOnlyCommand)
- ssh execution translates /movies/ and /series/ to node-specific paths
- remove media paths section from setup page
- add unraid-template.xml

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

14 lines
340 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
restart: unless-stopped