mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-04 02:46:23 +00:00
41 lines
956 B
YAML
41 lines
956 B
YAML
---
|
|
version: "3"
|
|
|
|
###########################################################################################################################
|
|
# Handbrake
|
|
#
|
|
# DockerHub: https://hub.docker.com/r/jlesage/handbrake
|
|
#
|
|
# SAMPLE ENV
|
|
# <intentionally blank>
|
|
#
|
|
# NOTES
|
|
#
|
|
# You can specify read and write for example:
|
|
# "handbrake-storage:/storage:ro"
|
|
# "handbrake-output:/output:rw"
|
|
#
|
|
# Gotcha ubuntu zfs
|
|
# mkdir /etc/docker
|
|
# nano /etc/docker/daemon.json
|
|
# {
|
|
# "storage-driver": "fuse-overlayfs"
|
|
# } <- put this inside the new file daemon.json
|
|
# apt install fuse-overlayfs
|
|
# fuse-overlayfs --version
|
|
###########################################################################################################################
|
|
|
|
services:
|
|
handbrake:
|
|
image: jlesage/handbrake
|
|
volumes:
|
|
- ./data/config:/config
|
|
- ./data/raw:/storage
|
|
- ./data/watch:/watch
|
|
- ./data/processed:/output
|
|
restart: "no"
|
|
ports:
|
|
- "8000:5800"
|
|
|
|
|