User Tools

This is an old revision of the document!


Handbrake Docker With Web Interface

Quick Start

docker pull jlesage/handbrake

NOTE: The Docker command provided in this quick start is given as an example and parameters should be adjusted to your need.

Launch the HandBrake docker container with the following command:

docker run -d \
    --name=handbrake \
    -p 5800:5800 \
    -v /docker/appdata/handbrake:/config:rw \
    -v /home/user:/storage:ro \
    -v /home/user/HandBrake/watch:/watch:rw \
    -v /home/user/HandBrake/output:/output:rw \
    jlesage/handbrake

Where:

  • /docker/appdata/handbrake: This is where the application stores its configuration, states, log and any files needing persistency.
  • /home/user: This location contains files from your host that need to be accessible to the application.
  • /home/user/HandBrake/watch: This is where videos to be automatically converted are located
  • /home/user/HandBrake/output: This is where automatically converted video files are written.

Browse to http://your-host-ip:5800 to access the HandBrake GUI. Files from the host appear under the /storage folder in the container.

Original: https://hub.docker.com/r/jlesage/handbrake/

Modified:

docker run -d     --name=handbrake   \
  -p 5800:5800  \
   -v /docker/appdata/handbrake:/config:rw  \
   -v /source:/storage:rw   \
   -v /source/handbrake/watch:/watch:rw  \
   -v /home/user/HandBrake/output:/output:rw

Documentation

Full documentation is available at https://github.com/jlesage/docker-handbrake