Initial configuration

This commit is contained in:
Tanguy Herbron 2022-01-13 21:50:46 +01:00
parent 6903bf3073
commit e3ed0e76d6
3 changed files with 10374 additions and 0 deletions

4
.env.sample Normal file
View File

@ -0,0 +1,4 @@
TV_SHOWS_WATCH=
MOVIES_WATCH=
TV_SHOWS_OUTPUT=
MOVIES_OUTPUT=

10351
config/ghb/presets.json Normal file

File diff suppressed because it is too large Load Diff

19
docker-compose.yml Normal file
View File

@ -0,0 +1,19 @@
version: "3.2"
services:
handbrake:
image: jlesage/handbrake
container_name: handbrake
ports:
- 5800:5800
volumes:
- ./config:/config:rw
- ./storage:/storage:ro
- ${TV_SHOWS_WATCH}:/watch:rw
- ${MOVIES_WATCH}:/watch2:rw
- ${TV_SHOWS_OUTPUT}:/output_tvshows:rw
- ${MOVIES_OUTPUT}:/output_movies:rw
environment:
- AUTOMATED_CONVERSION_PRESET=General/Halia default 1080p
- AUTOMATED_CONVERSION_OUTPUT_DIR=/output_tvshows
- AUTOMATED_CONVERSION_OUTPUT_DIR_2=/output_movies