Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- https://hub.docker.com/r/jlesage/handbrake
- --------------------------------------------------------------------------------------
- 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
- --------------------------------------------------------------------------------------
- change to
- --------------------------------------------------------------------------------------
- docker run -d \
- --name=handbrake \
- -p 5800:5800 \
- -v /opt/docker/appdata/handbrake:/config:rw \
- -v /opt/HandBrake/storage:/storage:ro \
- -v /opt/HandBrake/watch:/watch:rw \
- -v /opt/HandBrake/output:/output:rw \
- jlesage/handbrake
- --------------------------------------------------------------------------------------
- note that no need to create any directory as it will create automatically during pulling from image.
- ------------------------------------------
- another instance
- docker run -d \
- --name=handbrake1 \
- -p 5801:5800 \
- -v /mnt/mount_dataku/docker/appdata/handbrake:/config:rw \
- -v /mnt/mount_dataku/HandBrake/storage:/storage:ro \
- -v /mnt/mount_dataku/HandBrake/watch:/watch:rw \
- -v /mnt/mount_dataku/HandBrake/output:/output:rw \
- jlesage/handbrake
Advertisement