estimated reading time < 1 min
With handbrake you can eadily and comfortably convert video files to your needs – for example to create iTunes compatible mp4 files from mkv videos.
This is the docker-compose file I use to create a handbrake container with a nice web-ui. I use it in QNAPs container-station.
Please ensure to adapt the paths and variables to your specific environment.
--- version: '2' services: handbrake: image: jlesage/handbrake container_name: handbrake environment: - USER_ID=1000 - GROUP_ID=100 - UMASK=0 - TZ=Asia/Bangkok volumes: - /share/Container/container-data/handbrake/config:/config - /share/Media:/storage ports: - 5810:5800 - 5910:5900 restart: unless-stopped
Views: 160