- 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
11 lines
201 B
YAML
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
|