I am running Proxmox on my self built Debian Server and a docker VM (not LXC).
I managed to pass through the Blu-Ray-Sata-Drive to my Docker VM and mapped it but it is not recognized …
Code: Select all
networks:
frontend:
external: true
backend:
external: true
services:
makemkv:
image: jlesage/makemkv
container_name: makemkv
devices:
- "/dev/sr0:/dev/sr0"
environment:
# - USER_ID=1000
# - GROUP_ID=1000
- TZ=Europe/Berlin
- UMASK=022
volumes:
- /srv/rip/config/makemkv:/config
- /mnt/Filme/mkv:/storage
ports:
- "5800:5800"
restart: unless-stopped
Thank you!