Skip to content

Commit

Permalink
feat: add handbrake
Browse files Browse the repository at this point in the history
  • Loading branch information
hugginsio committed Jan 6, 2024
1 parent f11697d commit fc4196f
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
3 changes: 3 additions & 0 deletions docker/handbrake/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# [Handbrake](https://github.com/jlesage/docker-handbrake)

A tool for converting video from nearly any format to a selection of modern, widely supported codecs.
37 changes: 37 additions & 0 deletions docker/handbrake/compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Compose file for Handbrake

name: handbrake
services:
handbrake:
image: "jlesage/handbrake:v23.12.2"
container_name: "handbrake"
restart: unless-stopped
logging:
driver: "local"
options:
max-file: "3"
max-size: "5m"
networks:
- "traefik-external"
volumes:
- "/etc/localtime:/etc/localtime:ro"
- "${PATH_PARENT}/homelab-data/handbrake/config:/config"
- "/media/media/Pending/makemkv:/storage:ro"
- "/media/media/Pending/handbrake:/output"
environment:
- "AUTOMATED_CONVERSION=0"
labels:
- "traefik.enable=true"
- "traefik.docker.network=traefik-external"
- "traefik.http.routers.handbrake.rule=Host(`handbrake.${DOMAIN_NAME}`)"
- "traefik.http.services.handbrake.loadbalancer.server.port=5800"
- "traefik.http.routers.handbrake.entrypoints=websecure"
- "traefik.http.routers.handbrake.tls=true"
- "homepage.group=Applications"
- "homepage.name=Handbrake"
- "homepage.icon=https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/png/handbrake.png"
- "homepage.href=https://handbrake.${DOMAIN_NAME}"
- "homepage.description=Convert and transcode video from nearly any format."
networks:
traefik-external:
external: true

0 comments on commit fc4196f

Please sign in to comment.