─── ❖ ── ✦ ── ❖ ───
A quick note about how to run MakeMKV in Docker on Synology (works on other platforms aswell).
I’ve used this to convert .VOB into .MKV files.
- Create folders in the Synology WebUI (or terminal):
mkdir /volume1/temp/input && mkdir /volume1/temp/output
- Run in terminal:
docker run --rm -d --name=makemkv -p 9400:5800 -v /volume1/temp/input:/storage:ro -v /volume1/temp/output:/output:rw -e USER_ID=0 -e GROUP_ID=0 jlesage/makemkv
- Connect browser to port 9400 and convert the files.
- Cleanup.
docker stop makemkv
─── ❖ ── ✦ ── ❖ ───