adding reaper-web docker file config and compose

This commit is contained in:
2026-05-18 05:11:33 +00:00
Unverified
parent 55e4830e39
commit 00c2a1fe5d
18 changed files with 1284 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
# reaper-web -
services:
reaper:
build:
context: .
args:
REAPER_VERSION: "732"
container_name: reaper-web
privileged: true # Required for low-latency scheduling and /dev/snd access
shm_size: "1gb" # Critical for GUI performance in KasmVNC
environment:
- PUID=1000
- PGID=1000
- TZ=America/New_York
- VNC_PASSWORD=${VNC_PASSWORD} # Managed via .env
- PIPEWIRE_LATENCY=128/48000
volumes:
# Persistent REAPER configuration (keymaps, templates, etc.)
- ${DATA_PATH}/config:/config
# VST/CLAP/LV2 Plugins
- ${DATA_PATH}/vst:/vst
- ${DATA_PATH}/vst3:/usr/lib/vst3
- ${DATA_PATH}/lv2:/usr/lib/lv2
# Project files
- ${DATA_PATH}/projects:/projects
# Audio/MIDI Hardware Passthrough
- /dev/snd:/dev/snd
ports:
- ${REAPER_HTTP_PORT}:3000 # HTTP Web UI
- ${REAPER_HTTPS_PORT}:3001 # HTTPS Web UI
restart: unless-stopped
labels:
# Nginx Proxy Manager Automation
- "npm.proxy.domains=reaper"
- "npm.proxy.host=${DOCKER_HOST_IP}"
- "npm.proxy.port=${REAPER_HTTP_PORT}"
- "npm.proxy.scheme=http"
- "npm.proxy.websockets=true"
# Pi-hole Automation (Point to Docker Host/Proxy IP)
- "pihole.custom-record=[[\"reaper\", \"${DOCKER_HOST_IP}\"]]"