Files
Xstream-Standalone/docker-compose.yml
DasPoschi 75986d91f0 DAP-75: Docker-Unterstützung für xStream WebUI hinzugefügt
- webui/Dockerfile: Python 3.12-slim Image, Build-Kontext ist das Repo-Root
  damit plugin.video.xstream erreichbar bleibt
- docker-compose.yml: Service xstream-webui auf Port 5000, Cache-Volume
- .dockerignore: __pycache__, .git, .paperclip, etc. ausgeschlossen

Starten: docker compose up --build
2026-08-20 15:46:25 +02:00

11 lines
201 B
YAML

services:
xstream-webui:
build:
context: .
dockerfile: webui/Dockerfile
ports:
- "5000:5000"
volumes:
- ./webui/cache:/app/webui/cache
restart: unless-stopped