Simple Dockerfile to install several media file tools that can be used with
mounted media volumes. The image is built with the default uid and gid of
1000:100, which can be altered at build time with the --build-arg
arguments
shown below.
- handbrake-cli
- mediainfo
- par2
- mediainfo
- ranger (for easy folder browsing)
- rsync
- unrar (nonfree)
docker build --build-arg uid=$(id -u) --build-arg gid=$(id -g) -t media_tools .
docker run -it --rm --volumes-from media_data -v /mnt/media:/mnt media_tools