33 lines
873 B
YAML
33 lines
873 B
YAML
services:
|
|
stream-recorder:
|
|
image: git.techniverse.net/scriptos/stream-recorder:latest
|
|
container_name: stream-recorder
|
|
restart: unless-stopped
|
|
ports:
|
|
- "8484:8484"
|
|
volumes:
|
|
- ./data:/app/data
|
|
# Optional: Recordings auf separatem Pfad (dann download_path in Einstellungen anpassen)
|
|
# - /mnt/storage/recordings:/recordings
|
|
networks:
|
|
stream-recorder_net:
|
|
ipv4_address: 172.16.84.10
|
|
environment:
|
|
TZ: Europe/Berlin
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:8484/api/health"]
|
|
interval: 30s
|
|
timeout: 5s
|
|
retries: 3
|
|
start_period: 10s
|
|
|
|
networks:
|
|
stream-recorder_net:
|
|
name: stream-recorder.dockernetwork.local
|
|
driver: bridge
|
|
ipam:
|
|
config:
|
|
- subnet: 172.16.84.0/24
|
|
gateway: 172.16.84.1
|
|
ip_range: 172.16.84.128/25
|