Add my homelab setup, converted to docker compose files

This commit is contained in:
2024-05-28 16:55:33 -03:00
commit eecd123c53
17 changed files with 314 additions and 0 deletions

14
handbrake/docker-compose.yml Executable file
View File

@ -0,0 +1,14 @@
version: '3'
services:
handbrake:
container_name: handbrake
image: jlesage/handbrake:latest
restart: on-failure
ports:
- "5800:5800"
volumes:
- "/home/isaac:/storage:ro"
- "/docker/appdata/handbrake/config:/config:rw"
- "/docker/appdata/handbrake/trash:/trash:rw"
- "/docker/appdata/handbrake/watch:/watch:rw"
- "/docker/appdata/handbrake/output:/output:rw"