15 lines
529 B
YAML
15 lines
529 B
YAML
---
|
|
services:
|
|
handbrake-server:
|
|
image: ghcr.io/thenickoftime/handbrake-web-server:latest
|
|
container_name: handbrake-server
|
|
user: 1000:100 # edit to run as user (uuid:guid) with permissions to access your media. 0:0 to run as root (not recommended).
|
|
networks:
|
|
public:
|
|
ipv4_address: 192.168.240.50
|
|
ports:
|
|
- "${HANDBRAKER_SERVER_EXTERNAL_PORT}:${HANDBRAKER_SERVER_INTERNAL_PORT}"
|
|
volumes:
|
|
- "${DOCKER_STORAGE_PATH}/handbrake-server/data:/data"
|
|
- "${STORAGE_PATH}:/video"
|