add handbrake example dockerfile

This commit is contained in:
2026-05-29 09:23:30 +00:00
Unverified
parent 8e69e226fe
commit 4d234c6fec

View File

@@ -0,0 +1,17 @@
# Handbrake - https://github.com/jlesage/docker-handbrake
services:
handbrake:
image: jlesage/handbrake:latest
container_name: handbrake
ports:
- "5800:5800"
volumes:
- "/docker/appdata/handbrake:/config:rw"
- "/home/user/Videos:/storage:ro"
- "/home/user/HandBrake/watch:/watch:rw"
- "/home/user/HandBrake/output:/output:rw"
environment:
- USER_ID=1000
- GROUP_ID=1000
- TZ=America/New_York
restart: unless-stopped