adding reaper-web docker file config and compose
This commit is contained in:
40
docker_compose/reaper-web/docker-compose.yaml
Normal file
40
docker_compose/reaper-web/docker-compose.yaml
Normal 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}\"]]"
|
||||
Reference in New Issue
Block a user