17 lines
433 B
YAML
17 lines
433 B
YAML
version: '3'
|
|
services:
|
|
handbrake:
|
|
container_name: handbrake
|
|
ports:
|
|
- 5800:5800
|
|
volumes:
|
|
- ${ZFS_DIR}/handbrake/config:/config:rw
|
|
- ${ZFS_DIR}/handbrake/data:/storage:ro
|
|
- ${ZFS_DIR}/handbrake/watch:/watch:rw
|
|
- ${ZFS_DIR}/handbrake/output:/output:rw
|
|
image: jlesage/handbrake
|
|
restart: unless-stopped
|
|
|
|
|
|
|
|
|