13 lines
723 B
YAML
13 lines
723 B
YAML
---
|
|
services:
|
|
handbrake-worker:
|
|
image: ghcr.io/thenickoftime/handbrake-web-worker:latest
|
|
container_name: handbrake-web-worker
|
|
user: 1000:100 # edit to run as user (uuid:guid) with permissions to access your media. 0:0 to run as root (not recommended).
|
|
environment:
|
|
- WORKER_ID=handbrake-worker-devilfish # give your worker a unique name
|
|
- SERVER_URL=http://192.168.0.106 # change if setting up a standalone worker, prefix with http(s):// if necessary
|
|
- SERVER_PORT=9997 # change if using a reverse proxy or the port is otherwise different than above
|
|
volumes:
|
|
- /mnt/nas:/video # ensure this path is the same across all containers
|
|
restart: unless-stopped |