FaLee

2025-09-01 - Create Handbrake Docker From Dockerhub

Sep 1st, 2025 (edited)
57
0
Never
4
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. https://hub.docker.com/r/jlesage/handbrake
  2. --------------------------------------------------------------------------------------
  3. docker run -d \
  4. --name=handbrake \
  5. -p 5800:5800 \
  6. -v /docker/appdata/handbrake:/config:rw \
  7. -v /home/user:/storage:ro \
  8. -v /home/user/HandBrake/watch:/watch:rw \
  9. -v /home/user/HandBrake/output:/output:rw \
  10. jlesage/handbrake
  11. --------------------------------------------------------------------------------------
  12. change to
  13.  
  14. --------------------------------------------------------------------------------------
  15. docker run -d \
  16. --name=handbrake \
  17. -p 5800:5800 \
  18. -v /opt/docker/appdata/handbrake:/config:rw \
  19. -v /opt/HandBrake/storage:/storage:ro \
  20. -v /opt/HandBrake/watch:/watch:rw \
  21. -v /opt/HandBrake/output:/output:rw \
  22. jlesage/handbrake
  23. --------------------------------------------------------------------------------------
  24. note that no need to create any directory as it will create automatically during pulling from image.
  25.  
  26. ------------------------------------------
  27. another instance
  28.  
  29. docker run -d \
  30. --name=handbrake1 \
  31. -p 5801:5800 \
  32. -v /mnt/mount_dataku/docker/appdata/handbrake:/config:rw \
  33. -v /mnt/mount_dataku/HandBrake/storage:/storage:ro \
  34. -v /mnt/mount_dataku/HandBrake/watch:/watch:rw \
  35. -v /mnt/mount_dataku/HandBrake/output:/output:rw \
  36. jlesage/handbrake
Advertisement
Comments
  • User was banned
  • User was banned
  • User was banned
  • User was banned
Add Comment
Please, Sign In to add comment