─── ❖ ── ✦ ── ❖ ───

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.

  1. Create folders in the Synology WebUI (or terminal):
mkdir /volume1/temp/input && mkdir /volume1/temp/output
  1. 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
  1. Connect browser to port 9400 and convert the files.
  2. Cleanup.
docker stop makemkv

─── ❖ ── ✦ ── ❖ ───